mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix conditional compilation of tests using glob expressions.
This commit is contained in:
parent
9d686e7107
commit
5250372ab6
1 changed files with 2 additions and 2 deletions
|
@ -408,7 +408,7 @@ TEST(FlagFileTest, FilenamesOurfileFirst) {
|
|||
-1.0);
|
||||
}
|
||||
|
||||
#if HAVE_FNMATCH_H // otherwise glob isn't supported
|
||||
#if defined(HAVE_FNMATCH_H) || (defined(_MSC_VER) && defined(HAVE_SHLWAPI_H)) // otherwise glob isn't supported
|
||||
TEST(FlagFileTest, FilenamesOurfileGlob) {
|
||||
FLAGS_test_string = "initial";
|
||||
FLAGS_test_bool = false;
|
||||
|
@ -460,7 +460,7 @@ TEST(FlagFileTest, FilenamesOurfileInBigList) {
|
|||
1,
|
||||
-1.0);
|
||||
}
|
||||
#endif // ifdef HAVE_FNMATCH_H
|
||||
#endif // defined(HAVE_FNMATCH_H) || (defined(_MSC_VER) && defined(HAVE_SHLWAPI_H))
|
||||
|
||||
// Tests that a failed flag-from-string read keeps flags at default values
|
||||
TEST(FlagFileTest, FailReadFlagsFromString) {
|
||||
|
|
Loading…
Add table
Reference in a new issue