summaryrefslogtreecommitdiffstats
path: root/src/report-python/test_dd_create
diff options
context:
space:
mode:
Diffstat (limited to 'src/report-python/test_dd_create')
-rwxr-xr-xsrc/report-python/test_dd_create6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/report-python/test_dd_create b/src/report-python/test_dd_create
index 71ab8de5..2ac97924 100755
--- a/src/report-python/test_dd_create
+++ b/src/report-python/test_dd_create
@@ -10,6 +10,7 @@ if dd:
else:
print "dd is zero"
+print "name:", dd.name
print "closing"
dd.close()
@@ -17,3 +18,8 @@ if dd:
print "dd is nonzero"
else:
print "dd is zero"
+
+# Should fail here
+dd.name = "qwe"
+
+print "Done"