summaryrefslogtreecommitdiffstats
path: root/openmp/testsuite/c/omp_task_if.c
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2017-11-13 17:44:48 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2017-11-13 17:44:48 +0000
commitf902e467b75671d06d1e9ad3663b8aa9366bc14b (patch)
treed6de4407663a1054506cd8b97d8a047f411e8cd8 /openmp/testsuite/c/omp_task_if.c
parent9e3d8f4b39e29e4616e8addb1240530dbdfab2c4 (diff)
downloadbcm5719-llvm-f902e467b75671d06d1e9ad3663b8aa9366bc14b.tar.gz
bcm5719-llvm-f902e467b75671d06d1e9ad3663b8aa9366bc14b.zip
[OpenMP] Remove the unused testsuite/ directory
The testsuite directory is not used or updated and confuses new users to the OpenMP project. These tests were rewritten using the lit format and put under the runtime/test directory. This patch removes the entire testsuite/ directory. Differential Revision: https://reviews.llvm.org/D39767 llvm-svn: 318056
Diffstat (limited to 'openmp/testsuite/c/omp_task_if.c')
-rw-r--r--openmp/testsuite/c/omp_task_if.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/openmp/testsuite/c/omp_task_if.c b/openmp/testsuite/c/omp_task_if.c
deleted file mode 100644
index c07ab2fdd83..00000000000
--- a/openmp/testsuite/c/omp_task_if.c
+++ /dev/null
@@ -1,43 +0,0 @@
-<ompts:test>
-<ompts:testdescription>Test which checks the if clause of the omp task directive. The idear of the tests is to generate a tasks in a single region and pause it immediately. The parent thread now shall set a counter variable which the paused task shall evaluate when woke up.</ompts:testdescription>
-<ompts:ompversion>3.0</ompts:ompversion>
-<ompts:directive>omp task if</ompts:directive>
-<ompts:dependences>omp single,omp flush</ompts:dependences>
-<ompts:testcode>
-#include <stdio.h>
-#include <math.h>
-#include "omp_testsuite.h"
-#include "omp_my_sleep.h"
-
-
-int <ompts:testcode:functionname>omp_task_if</ompts:testcode:functionname>(FILE * logFile){
- <ompts:orphan:vars>
- int condition_false;
- int count;
- int result;
- </ompts:orphan:vars>
- count=0;
- condition_false = (logFile == NULL);
-#pragma omp parallel
-{
-#pragma omp single
- {
- <ompts:orphan>
-#pragma omp task <ompts:check>if (condition_false)</ompts:check> shared(count, result)
- {
- my_sleep (SLEEPTIME_LONG);
-//#pragma omp flush (count)
- result = (0 == count);
- } /* end of omp task */
- </ompts:orphan>
-
- count = 1;
-//#pragma omp flush (count)
-
- } /* end of single */
-} /*end of parallel */
-
- return result;
-}
-</ompts:testcode>
-</ompts:test>
OpenPOWER on IntegriCloud