From b5023df3d6d46c7a220eb1db0c2db8cbe8a881fc Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 1 Apr 2010 17:56:57 +0000 Subject: Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked as a regular test by regrtest.py, and fails. --- Lib/test/gdb_sample.py | 12 ++++++++++++ Lib/test/test_gdb_sample.py | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 Lib/test/gdb_sample.py delete mode 100644 Lib/test/test_gdb_sample.py diff --git a/Lib/test/gdb_sample.py b/Lib/test/gdb_sample.py new file mode 100644 index 0000000..a732b25 --- /dev/null +++ b/Lib/test/gdb_sample.py @@ -0,0 +1,12 @@ +# Sample script for use by test_gdb.py + +def foo(a, b, c): + bar(a, b, c) + +def bar(a, b, c): + baz(a, b, c) + +def baz(*args): + print(42) + +foo(1, 2, 3) diff --git a/Lib/test/test_gdb_sample.py b/Lib/test/test_gdb_sample.py deleted file mode 100644 index a732b25..0000000 --- a/Lib/test/test_gdb_sample.py +++ /dev/null @@ -1,12 +0,0 @@ -# Sample script for use by test_gdb.py - -def foo(a, b, c): - bar(a, b, c) - -def bar(a, b, c): - baz(a, b, c) - -def baz(*args): - print(42) - -foo(1, 2, 3) -- cgit v0.12