[Git][cmucl/cmucl][issue-132-ansi-test-rename-files] Used grep -a to find unexpected changes
Raymond Toy (@rtoy)
gitlab at common-lisp.net
Sun Sep 4 04:22:05 UTC 2022
Raymond Toy pushed to branch issue-132-ansi-test-rename-files at cmucl / cmucl
Commits:
c0e48e6c by Raymond Toy at 2022-09-03T21:21:49-07:00
Used grep -a to find unexpected changes
Without -a, grep doesn't find any changes, making the test pass. Use
-a to treat the file as text (which is mostly is, except for unicode
characters/strings) so that we can find if there unexpected successes
or failures.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -80,7 +80,7 @@ linux:ansi-test:
script:
- cd ansi-test
- make LISP="../dist/bin/lisp -batch -noinit -nositeinit"
- - grep 'No unexpected \(successes\|failures\)' test.out
+ - grep -a 'No unexpected \(successes\|failures\)' test.out
linux:benchmark:
stage: benchmark
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c0e48e6c63680ca24ff3358eca3656c664dbc9e0
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c0e48e6c63680ca24ff3358eca3656c664dbc9e0
You're receiving this email because of your account on gitlab.common-lisp.net.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20220904/4efd292e/attachment.html>
More information about the cmucl-cvs
mailing list