Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:09:26

0001 #!/bin/bash
0002 
0003 test_string="BOOST_TEST("
0004 grep $test_string -n -r Tests --include "*.cpp" --include "*.hpp" --include "*.ipp"
0005 
0006 status=$?
0007 
0008 if [[ $status -eq 0 ]]; then
0009   echo "Found occurrences of '$test_string'"
0010   exit 1
0011 else
0012   echo "Did not find occurrences of '$test_string'"
0013   exit 0
0014 fi