testinstall.cc 533 B

123456789101112131415161718192021222324
  1. // Copyright 2008 The RE2 Authors. All Rights Reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. #include <re2/re2.h>
  5. #include <re2/filtered_re2.h>
  6. #include <stdio.h>
  7. int main(void) {
  8. re2::FilteredRE2 f;
  9. int id;
  10. f.Add("a.*b.*c", RE2::DefaultOptions, &id);
  11. std::vector<std::string> v;
  12. f.Compile(&v);
  13. std::vector<int> ids;
  14. f.FirstMatch("abbccc", ids);
  15. if(RE2::FullMatch("axbyc", "a.*b.*c")) {
  16. printf("PASS\n");
  17. return 0;
  18. }
  19. printf("FAIL\n");
  20. return 2;
  21. }