Chromium Code Reviews| Index: tests/gdb/execute_nacl_manifest_twice.py |
| =================================================================== |
| --- tests/gdb/execute_nacl_manifest_twice.py (revision 0) |
| +++ tests/gdb/execute_nacl_manifest_twice.py (revision 0) |
| @@ -0,0 +1,17 @@ |
| +# -*- python -*- |
| +# Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +from gdb_test import AssertEquals |
| +import gdb_test |
| + |
| + |
| +def test(gdb): |
| + gdb.LoadManifestFile() |
|
Mark Seaborn
2013/01/21 15:52:35
Maybe comment that this is a second, superfluous c
halyavin
2013/01/22 08:04:27
Done.
|
| + gdb.ResumeCommand('continue') |
| + gdb.Quit() |
| + |
| + |
| +if __name__ == '__main__': |
| + gdb_test.RunTest(test, '') |