File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change 1818
1919cd $curdir
2020
21- # Show more output from running the tests, including which tests have been run and
21+ # Show more output from running the tests, including which tests have been run and
2222# which were skipped. [Disable for now.]
2323# reportFlags="-rA"
2424
3535 pip install tox
3636fi
3737
38+ # Cleanup any FDCs that might be in either the standard directory or under $HOME
39+ # if you're using the Redist client.
40+ rm -f /var/mqm/errors/* FDC ~ /IBM/MQ/data/errors/* FDC
41+
3842# And now run them
3943# Tests are run in the alphabetic order of test*.py
4044tox -e container $defargs $* 2>&1
45+ rc=$?
46+
47+ # Check for FDCs.
48+ fdcCnt=` ls /var/mqm/errors/* FDC ~ /IBM/MQ/data/errors/* FDC 2> /dev/null | wc -w`
49+ if [ $fdcCnt -ne 0 ]
50+ then
51+ echo " FDCs found. Need to investigate"
52+ exit 1
53+ fi
54+
55+ exit $rc
4156
Original file line number Diff line number Diff line change @@ -257,10 +257,9 @@ then
257257 echo " ERROR: CheckCA failed"
258258 exit 1
259259else
260- echo " OK : Found $line "
260+ echo " OK "
261261fi
262262
263- exit 0
264263# Try building against an old level of MQ and against the base level of Python
265264if [ -x $curdir /checkBaseLevel.sh ]
266265then
You can’t perform that action at this time.
0 commit comments