summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/import_nomodule_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/import_nomodule_runme.py')
-rw-r--r--Examples/test-suite/python/import_nomodule_runme.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Examples/test-suite/python/import_nomodule_runme.py b/Examples/test-suite/python/import_nomodule_runme.py
index ba0abfd9a..efcff9c48 100644
--- a/Examples/test-suite/python/import_nomodule_runme.py
+++ b/Examples/test-suite/python/import_nomodule_runme.py
@@ -1,5 +1,10 @@
from import_nomodule import *
+# This test is expected to fail with -builtin option.
+# The base class is needed for the builtin class hierarchy
+if is_python_builtin():
+ exit(0)
+
f = create_Foo()
test1(f,42)
delete_Foo(f)