summaryrefslogtreecommitdiff
path: root/Tests/JCTest
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-12-29 17:43:37 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2008-12-29 17:43:37 -0500
commit38b7b3fea0d5ab5bad8a658568264cfa8abeed27 (patch)
treef305ad1f7a8bbf9fa59178ff7cb4045d7e0b3e5b /Tests/JCTest
parenta075cfe976668c77e0556814b8d86a3b8eaaa021 (diff)
downloadcmake-38b7b3fea0d5ab5bad8a658568264cfa8abeed27.tar.gz
ENH: add test for -j N ctest stuff
Diffstat (limited to 'Tests/JCTest')
-rw-r--r--Tests/JCTest/CMakeLists.txt9
-rw-r--r--Tests/JCTest/TestTime.cxx12
2 files changed, 21 insertions, 0 deletions
diff --git a/Tests/JCTest/CMakeLists.txt b/Tests/JCTest/CMakeLists.txt
new file mode 100644
index 0000000000..a24a92f852
--- /dev/null
+++ b/Tests/JCTest/CMakeLists.txt
@@ -0,0 +1,9 @@
+cmake_minimum_required(VERSION 2.6)
+project(TestTime)
+enable_testing()
+add_executable(TestTime TestTime.cxx)
+
+foreach(f 1 2 3 4 5 6 7 8 9 10 11 12 12 14 15 16 17 18 19
+20 21 22 23 24 25 26 27 28 29 30)
+ add_test(TestTime${f} TestTime 10000000)
+endforeach(f)
diff --git a/Tests/JCTest/TestTime.cxx b/Tests/JCTest/TestTime.cxx
new file mode 100644
index 0000000000..5768ab5227
--- /dev/null
+++ b/Tests/JCTest/TestTime.cxx
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int ac, char** av)
+{
+ float d = 10.0;
+ for(int i =0; i < atoi(av[1]); i++)
+ {
+ d *= .2;
+ }
+ printf("%f", d);
+}