diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/perl.py')
-rw-r--r-- | meta/lib/oeqa/runtime/perl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/perl.py b/meta/lib/oeqa/runtime/perl.py index c9bb684c11..65da028d4b 100644 --- a/meta/lib/oeqa/runtime/perl.py +++ b/meta/lib/oeqa/runtime/perl.py | |||
@@ -18,6 +18,7 @@ class PerlTest(oeRuntimeTest): | |||
18 | (status, output) = self.target.run('which perl') | 18 | (status, output) = self.target.run('which perl') |
19 | self.assertEqual(status, 0, msg="Perl binary not in PATH or not on target.") | 19 | self.assertEqual(status, 0, msg="Perl binary not in PATH or not on target.") |
20 | 20 | ||
21 | @testcase(208) | ||
21 | def test_perl_works(self): | 22 | def test_perl_works(self): |
22 | (status, output) = self.target.run('perl /tmp/test.pl') | 23 | (status, output) = self.target.run('perl /tmp/test.pl') |
23 | self.assertEqual(status, 0, msg="Exit status was not 0. Output: %s" % output) | 24 | self.assertEqual(status, 0, msg="Exit status was not 0. Output: %s" % output) |