Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This file is mandatory for ctest to run
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 22 Dec 2009 17:05:55 +0000 (17:05 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 22 Dec 2009 17:05:55 +0000 (17:05 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6923 48e7efb5-ca39-0410-a469-dd3cf9ba447f

buildtools/Cmake/Cmake/chdir_run.sh [deleted file]
buildtools/Cmake/chdir_run.sh [new file with mode: 0755]

diff --git a/buildtools/Cmake/Cmake/chdir_run.sh b/buildtools/Cmake/Cmake/chdir_run.sh
deleted file mode 100755 (executable)
index 7c81fbb..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#! /bin/sh
-cd $1
-shift
-exec "$@"
diff --git a/buildtools/Cmake/chdir_run.sh b/buildtools/Cmake/chdir_run.sh
new file mode 100755 (executable)
index 0000000..9a44da2
--- /dev/null
@@ -0,0 +1,8 @@
+#! /bin/sh
+# This script goes to the directory specified as first argument, and executes the rest of its arguments
+# It ought to be a solution to specify the PWD of commands in CTest, but I didn't find it yet
+
+
+cd $1
+shift
+exec "$@"