IntelLabs / pmgd

Persistent Memory Graph Database
MIT License
43 stars 9 forks source link

indexstringtest fails on some systems #23

Open vishakha041 opened 5 years ago

vishakha041 commented 5 years ago

that do not have the locales used in the test. Could check for the available locales or ask the user for them

luisremis commented 5 years ago

Indexstringtest requires the locale “fr_FR.utf8” to be available on your system.

At line 104 of indexstringtest.cc, we should add

    catch (std::runtime_error e) {
        cout << e.what() << "\n";
        return 1;
    }

-Philip