From ca70cf7919d3ee2aca5294af6aa75f714d00baf2 Mon Sep 17 00:00:00 2001
From: Anh Nguyen-Tuong <zenpoems@gmail.com>
Date: Wed, 21 Nov 2018 21:11:47 -0500
Subject: [PATCH] Verify that test_cmds.sh detects test failure

Former-commit-id: 1e56a8f29df91ab954df1504c728c377451b4aad
---
 .gitlab-ci.yml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bf5d07bc3..e1670780f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -107,3 +107,27 @@ basic-pgms-orig-centos75:
   tags:
     - centos75
 
+#
+# verify that test_cmds.sh detects test failure
+#
+.verify-fails: &verify-fails
+  stage: test
+  script:
+    - ./cicd_tests/verify-fails.sh
+
+verify-fails-ubuntu18:
+  <<: *verify-fails
+  tags:
+    - ubuntu18
+
+verify-fails-ubuntu16:
+  <<: *verify-fails
+  tags:
+    - ubuntu16
+
+verify-fails-centos75:
+  <<: *verify-fails
+  tags:
+    - centos75
+
+
-- 
GitLab