Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: chrome/browser/nacl_host/test/debug_stub_browser_tests.py

Issue 11236025: Test that debug stub works with browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import sys
6
7 import gdb_rsp
8
9
10 def TestContinue(connection):
11 result = connection.RspRequest('vCont;c')
12 assert result =='W00', result
13
14
15 def Main(args):
16 port = int(args[0])
17 name = args[1]
18 connection = gdb_rsp.GdbRspConnection(('localhost', port))
19 if name == 'continue':
20 TestContinue(connection)
21
22 if __name__ == '__main__':
23 Main(sys.argv[1:])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698