File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,9 @@ jobs:
121
121
- run :
122
122
name : Run Regression Tests
123
123
command : ./tests/regression/runtests.sh --junit-output-dir ~/phpunit
124
+ - run :
125
+ name : Run Destructive Tests
126
+ command : ./tests/integration/final_tests.sh
124
127
- run :
125
128
name : Ensure that no PHP command-line errors were generated
126
129
command : >
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # These tests will change the data in the database and should only be run after
4
+ # the integration and regression tests have executed
5
+
6
+ set -e
7
+
8
+ /usr/lib64/xdmod/xdmod-supremm-admin --action=reset --resource=robertson --force 2>&1 | tee /tmp/supremm-admin-output.txt
9
+
10
+ if ! grep -q " Job summary documents status reset for 1 jobs" /tmp/supremm-admin-output.txt;
11
+ then
12
+ echo " Error missing expected output from xdmod-supremm-admin"
13
+ fi
You can’t perform that action at this time.
0 commit comments