From 8ffc6db00c83e5f75e92b3c4c63c1924597711a1 Mon Sep 17 00:00:00 2001 From: Leo Neat Date: Wed, 29 Jan 2020 11:03:43 -0800 Subject: [Infra] CIFuzz pipeline complete. (#3281) * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Testing action build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working build * Working fuzzers with out error surface * Working fuzzers with out error surface * Working fuzzers with out error surface * Printing std err * Adding fuzzer timeout * Adding fuzzer timeout * Changing fuzzer timeout to fuzz time * Formatting and refactoring * Spelling in fuzz_target.py * Spelling in fuzz_target.py * Spelling in fuzz_target.py * Upload artifact fix * Upload artifact fix * Upload artifact fix * Upload artifact fix * Upload artifact fix * Upload artifact fix * Upload artifact fix * Refactoring error codes. * reverting helper.py * reverting helper.py * reverting helper.py * chaning method to static * moving cifuzz file * Jonathan changes * Oliver and Jonathan comments * Oliver and Jonathan comments * Oliver and Jonathan comments * Utils unit tests * Test formatting and documentation * Build fuzzer test added * Changed repo manager errors * Unit and integration tests complete * Jonathan comments pt.1 * Jonathan comments pt.1 * Jonathan comments pt.1 * adding cifuzz_test * Build fuzzer test completed * Run fuzzers test finished. * Removed SRC dependency * Jonathan comments pt.2 * Max comments pt.1 * Max comments pt.2 * removing log specified out stream * Max comments pt.3 * Adding OSS_FUZZ_HOME env var * Jonathan comments pt.3 * Formatting * Olivers comments * Jonathan comments --- infra/repo_manager_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'infra/repo_manager_test.py') diff --git a/infra/repo_manager_test.py b/infra/repo_manager_test.py index 1c271cf5..79d1b40c 100644 --- a/infra/repo_manager_test.py +++ b/infra/repo_manager_test.py @@ -48,7 +48,7 @@ class TestRepoManager(unittest.TestCase): commit_to_test = '036ebac0134de3b72052a46f734e4ca81bb96055' test_repo_manager.checkout_commit(commit_to_test) self.assertEqual(commit_to_test, test_repo_manager.get_current_commit()) - with self.assertRaises(ValueError): + with self.assertRaises(repo_manager.RepoManagerError): test_repo_manager.checkout_commit(' ') with self.assertRaises(repo_manager.RepoManagerError): test_repo_manager.checkout_commit( @@ -75,6 +75,7 @@ class TestRepoManager(unittest.TestCase): test_repo_manager.get_commit_list(new_commit, 'asdfasdf') with self.assertRaises(repo_manager.RepoManagerError): # Testing commits out of order + # pylint: disable=arguments-out-of-order test_repo_manager.get_commit_list(new_commit, old_commit) -- cgit v1.2.3