diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-02-21 16:39:06 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-02-21 16:39:06 +0100 |
commit | 737873ca873e27948487f41aaebbade7a255128d (patch) | |
tree | 7244f87fd92c45f0d2789a449bbcb7b1491040c8 | |
parent | 796465596faa9fa69ffede1c16d944e6a6e24458 (diff) | |
download | gcc-737873ca873e27948487f41aaebbade7a255128d.zip gcc-737873ca873e27948487f41aaebbade7a255128d.tar.gz gcc-737873ca873e27948487f41aaebbade7a255128d.tar.bz2 |
ci: Do not allow unresolved test cases
-rw-r--r-- | .github/workflows/ccpp.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 951aecb..50ef728 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -61,7 +61,7 @@ jobs: - name: Check regressions run: | cd gccrs-build; \ - if grep "# of unexpected" gcc/testsuite/rust/rust.sum;\ + if grep -e "unexpected" -e "unresolved" gcc/testsuite/rust/rust.sum;\ then \ echo "some tests are not correct"; \ exit 1; \ |