diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-12 12:05:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-12 12:05:07 +0200 |
commit | f505a7865a6f338d7dbe8f084d1e8c8d5665a39e (patch) | |
tree | a65cedd39c47996dc1d38afc838bc7b88c813d97 /tests/recipe/cxx | |
parent | 9d5322d6a1220e91a1a4eabda08066bf60fa967e (diff) |
Fix invalid regex in C++ recipe tests
Diffstat (limited to 'tests/recipe/cxx')
-rw-r--r-- | tests/recipe/cxx/testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/recipe/cxx/testscript b/tests/recipe/cxx/testscript index f4eb8d1..3eb8015 100644 --- a/tests/recipe/cxx/testscript +++ b/tests/recipe/cxx/testscript @@ -85,7 +85,7 @@ EOI $* 2>>~%EOE%; - %^(c++|ld).*%+ + %^(c\+\+|ld).*%+ cp file{foo} EOE @@ -151,7 +151,7 @@ EOI $* test 2>>~%EOE%; - %^(c++|ld).*%+ + %^(c\+\+|ld).*%+ cp file{foo} test file{foo} bar |