diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-09-19 13:18:06 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-22 12:19:41 +0100 |
| commit | d6529876129a6932b6d2e369b3fd6ca40d342add (patch) | |
| tree | 82b62115b0f4ba9701c823988472884c735872b7 /scripts/qemuimage-tests/toolchain | |
| parent | 595321a62669e90bed5f459a9d926a68988086a9 (diff) | |
| download | poky-d6529876129a6932b6d2e369b3fd6ca40d342add.tar.gz | |
classes/imagetest-qemu: remove old image testing class
This has now been superseded by testimage.
(From OE-Core rev: d469c92394a1a95ae7a45b8b80dc4c2918e0e9a6)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/qemuimage-tests/toolchain')
| -rwxr-xr-x | scripts/qemuimage-tests/toolchain/cvs | 31 | ||||
| -rwxr-xr-x | scripts/qemuimage-tests/toolchain/iptables | 31 | ||||
| -rwxr-xr-x | scripts/qemuimage-tests/toolchain/sudoku-savant | 31 |
3 files changed, 0 insertions, 93 deletions
diff --git a/scripts/qemuimage-tests/toolchain/cvs b/scripts/qemuimage-tests/toolchain/cvs deleted file mode 100755 index 871d99110f..0000000000 --- a/scripts/qemuimage-tests/toolchain/cvs +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | # | ||
| 3 | # CVS compile Test for toolchain test | ||
| 4 | # The case extract toolchain tarball into temp folder | ||
| 5 | # Then compile CVS with the toolchain environment | ||
| 6 | # | ||
| 7 | # Author: Jiajun Xu <jiajun.xu@intel.com> | ||
| 8 | # | ||
| 9 | # This file is licensed under the GNU General Public License, | ||
| 10 | # Version 2. | ||
| 11 | # | ||
| 12 | . $COREBASE/scripts/qemuimage-testlib | ||
| 13 | |||
| 14 | TIMEOUT=120 | ||
| 15 | |||
| 16 | # Extract and test toolchain tarball | ||
| 17 | Test_Toolchain cvs ${TIMEOUT} | ||
| 18 | |||
| 19 | if [ $? -eq 0 ]; then | ||
| 20 | Test_Info "CVS Test PASS" | ||
| 21 | Test_Print_Result "CVS" 0 | ||
| 22 | exit 0 | ||
| 23 | elif [ $? -eq 1 ]; then | ||
| 24 | Test_Info "CVS Test FAIL" | ||
| 25 | Test_Print_Result "CVS" 1 | ||
| 26 | exit 1 | ||
| 27 | else | ||
| 28 | Test_Info "Skip CVS Test due to some configuration problem" | ||
| 29 | Test_Print_Result "CVS" 2 | ||
| 30 | exit 2 | ||
| 31 | fi | ||
diff --git a/scripts/qemuimage-tests/toolchain/iptables b/scripts/qemuimage-tests/toolchain/iptables deleted file mode 100755 index af89bbe7b3..0000000000 --- a/scripts/qemuimage-tests/toolchain/iptables +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | # | ||
| 3 | # iptables compile Test for toolchain test | ||
| 4 | # The case extract toolchain tarball into temp folder | ||
| 5 | # Then compile iptables with the toolchain environment | ||
| 6 | # | ||
| 7 | # Author: Jiajun Xu <jiajun.xu@intel.com> | ||
| 8 | # | ||
| 9 | # This file is licensed under the GNU General Public License, | ||
| 10 | # Version 2. | ||
| 11 | # | ||
| 12 | . $COREBASE/scripts/qemuimage-testlib | ||
| 13 | |||
| 14 | TIMEOUT=120 | ||
| 15 | |||
| 16 | # Extract and test toolchain tarball | ||
| 17 | Test_Toolchain iptables ${TIMEOUT} | ||
| 18 | |||
| 19 | if [ $? -eq 0 ]; then | ||
| 20 | Test_Info "iptables Test PASS" | ||
| 21 | Test_Print_Result "iptables" 0 | ||
| 22 | exit 0 | ||
| 23 | elif [ $? -eq 1 ]; then | ||
| 24 | Test_Info "iptables Test FAIL" | ||
| 25 | Test_Print_Result "iptables" 1 | ||
| 26 | exit 1 | ||
| 27 | else | ||
| 28 | Test_Info "Skip iptables Test due to some configuration problem" | ||
| 29 | Test_Print_Result "iptables" 2 | ||
| 30 | exit 2 | ||
| 31 | fi | ||
diff --git a/scripts/qemuimage-tests/toolchain/sudoku-savant b/scripts/qemuimage-tests/toolchain/sudoku-savant deleted file mode 100755 index 3d149dea27..0000000000 --- a/scripts/qemuimage-tests/toolchain/sudoku-savant +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | # | ||
| 3 | # sudoku-savant compile Test for toolchain test | ||
| 4 | # The case extract toolchain tarball into temp folder | ||
| 5 | # Then compile sudoku-savant with the toolchain environment | ||
| 6 | # | ||
| 7 | # Author: Jiajun Xu <jiajun.xu@intel.com> | ||
| 8 | # | ||
| 9 | # This file is licensed under the GNU General Public License, | ||
| 10 | # Version 2. | ||
| 11 | # | ||
| 12 | . $COREBASE/scripts/qemuimage-testlib | ||
| 13 | |||
| 14 | TIMEOUT=240 | ||
| 15 | |||
| 16 | # Extract and test toolchain tarball | ||
| 17 | Test_Toolchain sudoku-savant ${TIMEOUT} | ||
| 18 | |||
| 19 | if [ $? -eq 0 ]; then | ||
| 20 | Test_Info "sudoku-savant Test PASS" | ||
| 21 | Test_Print_Result "sudoku-savant" 0 | ||
| 22 | exit 0 | ||
| 23 | elif [ $? -eq 1 ]; then | ||
| 24 | Test_Info "sudoku-savant Test FAIL" | ||
| 25 | Test_Print_Result "sudoku-savant" 1 | ||
| 26 | exit 1 | ||
| 27 | else | ||
| 28 | Test_Info "Skip sudoku-savant Test due to some configuration problem" | ||
| 29 | Test_Print_Result "sudoku-savant" 2 | ||
| 30 | exit 2 | ||
| 31 | fi | ||
