summaryrefslogtreecommitdiffstats
path: root/src/report-python/test_dd_create
blob: 71ab8de56362a905befd92d0e51a5c0e517ab852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

from report import *

dd = dd_create("testdir", 0)
print dd

if dd:
    print "dd is nonzero"
else:
    print "dd is zero"

print "closing"
dd.close()

if dd:
    print "dd is nonzero"
else:
    print "dd is zero"