issue_0923_t.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 fhicl-config_t issue_0923b.fcl >issue_0923_out.txt 2>&1
4 status=$?
5 
6 (( $status == 0 )) || { echo "Unexpected exit code $status from exec invocation." 1>&2; exit 1; }
7 
8 diff -u issue_0923_ref.txt issue_0923_out.txt
9 
10 exit $?