This is an automated email from the git hooks/post-receive script.

jforbes pushed a commit to branch master
in repository kernel-tests.

commit 583101ae30905915a09cc9e86ff3bb7f34249a9d
Author: Josh Boyer <[email protected]>
Date:   Tue May 28 16:47:47 2013 -0400

    Checkout and build LTP
    
    This will allow us to call whatever we wind up wanting for the stress
    tests.
---
 stress/ltp/runtest.sh | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/stress/ltp/runtest.sh b/stress/ltp/runtest.sh
new file mode 100755
index 0000000..49066ca
--- /dev/null
+++ b/stress/ltp/runtest.sh
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+set -e
+
+source ../../utils/root-check.sh
+source ../../utils/build-deps.sh
+
+check_root
+is_root=$?
+if [ $is_root -ne 0 ]; then
+       exit 3
+fi
+
+# Clone and build LTP
+check_dep autoconf
+check_dep git
+check_dep automake
+check_dep make
+
+git clone git://ltp.git.sourceforge.net/gitroot/ltp/ltp
+pushd ltp
+make autotools
+./configure
+make all
+
+# Call the stress test scripts now
+
+# XXXXXX
+
+popd
+
+# Cleanup
+rm -rf ltp

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
kernel mailing list
[email protected]
https://lists.fedoraproject.org/admin/lists/[email protected]

Reply via email to