Description
Let's spoil all the 'ok' files in the project
for f in $(find . -name "*.ok" | grep test) ; do echo "discombobulated" > $f ; done
bazel test -c opt src/...
only 2 tests out of 1000 fail...
While running the cmake tests, the *.tcl tests essentially all fail as expected.
So something is actually not picking up the ok file in the bazel tests. Maybe it just compares the output with the wrong file ? (maybe comparing its own output ? https://media1.tenor.com/m/ZUIatzwXzIoAAAAC/self-high-five.gif )
Suggested Solution
Don't know. Probably something to do with where the test outputs are ending up.
Additional Context
No response