From 86965c9baf5dcda6b6419f38fc2049fd2f48318f Mon Sep 17 00:00:00 2001 From: Don Garrett Date: Thu, 9 Dec 2010 15:47:38 -0800 Subject: [PATCH] Save off --remote flag Change-Id: I5621ff8ab81408ac3f7daed970a065641495c4eb BUG=chromium-os:10179 TEST=none Review URL: http://codereview.chromium.org/5676002 --- bin/cros_au_test_harness.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/cros_au_test_harness.py b/bin/cros_au_test_harness.py index 4cb6653d17..2449587df8 100755 --- a/bin/cros_au_test_harness.py +++ b/bin/cros_au_test_harness.py @@ -502,6 +502,8 @@ if __name__ == '__main__': elif options.type == 'real': test_class = RealAUTest else: parser.error('Could not parse harness type %s.' % options.type) + remote = options.remote + test_suite = test_loader.loadTestsFromTestCase(test_class) test_result = unittest.TextTestRunner(verbosity=2).run(test_suite)