summaryrefslogtreecommitdiffstats
path: root/contrib/ctest
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ctest')
-rw-r--r--contrib/ctest/README.md2
-rwxr-xr-xcontrib/ctest/run-tests.cron6
-rw-r--r--contrib/ctest/run-tests.vbs15
3 files changed, 0 insertions, 23 deletions
diff --git a/contrib/ctest/README.md b/contrib/ctest/README.md
deleted file mode 100644
index c4a54a8..0000000
--- a/contrib/ctest/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-Folder moved to <tt>&lt;USCXML_SRC>/test/ctest</tt>. Some files remain here for backward compatibility with existing
-build slaves.
diff --git a/contrib/ctest/run-tests.cron b/contrib/ctest/run-tests.cron
deleted file mode 100755
index b3a34fd..0000000
--- a/contrib/ctest/run-tests.cron
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-set -e
-TEST_DIR="$( cd "$( dirname "$0" )" && pwd )"
-
-${TEST_DIR}/../../test/ctest/run-tests.cron \ No newline at end of file
diff --git a/contrib/ctest/run-tests.vbs b/contrib/ctest/run-tests.vbs
deleted file mode 100644
index 47511b2..0000000
--- a/contrib/ctest/run-tests.vbs
+++ /dev/null
@@ -1,15 +0,0 @@
-Set shell = CreateObject( "WScript.Shell" )
-Set fso = CreateObject("Scripting.FileSystemObject")
-Set ip = CreateObject("WScript.Network")
-Set procEnv = shell.Environment("Process")
-
-ME_NAME = Wscript.ScriptFullName
-TEST_DIR = fso.GetParentFolderName(fso.GetFile(ME_NAME))
-ACTUAL_CMD = TEST_DIR + "\..\..\test\ctest\run-tests.vbs"
-
-if (NOT fso.FileExists(ACTUAL_CMD)) Then
- MsgBox "Could not find actual script at " + ACTUAL_CMD
- WScript.Quit
-End If
-
-shell.Run ACTUAL_CMD \ No newline at end of file