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

from report import *
import report

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"