summaryrefslogtreecommitdiffstats
path: root/src/build/citest/build-script
diff options
context:
space:
mode:
Diffstat (limited to 'src/build/citest/build-script')
-rwxr-xr-xsrc/build/citest/build-script20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/build/citest/build-script b/src/build/citest/build-script
index 798c2055b..5d06ab4a3 100755
--- a/src/build/citest/build-script
+++ b/src/build/citest/build-script
@@ -43,6 +43,16 @@ CREATESANDBOX_PID=$!
# Build Hostboot.
make -j32 || exit -1
+# Check copyright completion.
+wait $COPYRIGHT_PID
+if [ $? -eq 0 ]; then
+ cat copyright.log
+else
+ echo "----Copyright check failed."
+ cat copyright.log
+ exit -1
+fi
+
# Check sandbox create completion.
wait $CREATESANDBOX_PID
if [ $? -eq 0 ]; then
@@ -63,16 +73,6 @@ ERRLPARSERS_PID=$!
# Start CxxTest Simics execution.
cxxtest-start.sh || exit -1
-# Check copyright completion.
-wait $COPYRIGHT_PID
-if [ $? -eq 0 ]; then
- cat copyright.log
-else
- echo "----Copyright check failed."
- cat copyright.log
- exit -1
-fi
-
# Check errl parser completion.
wait $ERRLPARSERS_PID
if [ $? -ne 0 ]; then
OpenPOWER on IntegriCloud