diff options
| author | Eric Fiselier <eric@efcs.ca> | 2016-12-23 23:37:52 +0000 | 
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2016-12-23 23:37:52 +0000 | 
| commit | fd838227411f3ce1fa348f1d334266231bbcc84d (patch) | |
| tree | 204de9a3dad8b79d83bba224d8f6d4775169483f /libcxx/test/std/re | |
| parent | 16166a4d71fca27f454a0837465143700dd41e98 (diff) | |
| download | bcm5719-llvm-fd838227411f3ce1fa348f1d334266231bbcc84d.tar.gz bcm5719-llvm-fd838227411f3ce1fa348f1d334266231bbcc84d.zip | |
Fix unused parameters and variables
llvm-svn: 290459
Diffstat (limited to 'libcxx/test/std/re')
| -rw-r--r-- | libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp | 7 | ||||
| -rw-r--r-- | libcxx/test/std/re/re.alg/re.alg.search/grep.pass.cpp | 2 | 
2 files changed, 6 insertions, 3 deletions
| diff --git a/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp b/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp index a32b2ca0ae3..f866929795d 100644 --- a/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp +++ b/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp @@ -617,11 +617,12 @@ int main()      }      std::locale::global(std::locale(LOCALE_cs_CZ_ISO8859_2));  */    { +    /*          std::cmatch m;          const char s[] = "m"; -       /* assert(std::regex_match(s, m,*/ std::regex("[a[=M=]z]"/*, -                                                 std::regex_constants::awk*/);//)); -/*        assert(m.size() == 1); +        assert(std::regex_match(s, m, std::regex("[a[=M=]z]", +                                                 std::regex_constants::awk); +       assert(m.size() == 1);          assert(!m.prefix().matched);          assert(m.prefix().first == s);          assert(m.prefix().second == m[0].first); diff --git a/libcxx/test/std/re/re.alg/re.alg.search/grep.pass.cpp b/libcxx/test/std/re/re.alg/re.alg.search/grep.pass.cpp index d6fc7696fca..fa4e675c78f 100644 --- a/libcxx/test/std/re/re.alg/re.alg.search/grep.pass.cpp +++ b/libcxx/test/std/re/re.alg/re.alg.search/grep.pass.cpp @@ -37,6 +37,8 @@ extern "C" void LLVMFuzzerTestOneInput(const char *data)          }          catch (std::regex_error &) {}      } +#else +    ((void)data);  #endif  } | 

