Chromium Code Reviews| Index: tests/isolate/fail.py |
| diff --git a/tests/isolate/fail.py b/tests/isolate/fail.py |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..a82098ac9697f9dc9f1fe78a21039a0dca799e17 |
| --- /dev/null |
| +++ b/tests/isolate/fail.py |
| @@ -0,0 +1,15 @@ |
| +#!/usr/bin/env python |
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import sys |
| + |
| + |
| +def main(): |
| + print 'Failing' |
| + return 1 |
| + |
| + |
| +if __name__ == '__main__': |
| + sys.exit(main()) |