# HG changeset patch # User Charles Manning # Date 1274230011 -43200 # Node ID 69decb385a5cb5323eaa6444d4b5266ce226b772 # Parent 3a14788fde977609ffc9460b5cd1d51576173542 yaffs: Add python test for O_EXCL Check that OEXCL really works according to what's on the box. Signed-off-by: Charles Manning diff --git a/direct/python/examples.py b/direct/python/examples.py --- a/direct/python/examples.py +++ b/direct/python/examples.py @@ -58,6 +58,18 @@ def yaffs_link_test(dir): yaffs_ls(dir) yaffs_unlink(fnameb) +def yaffs_o_excl_test(dir): + fname = dir + '/aaa' + yaffs_unlink(fname) + fd = yaffs_open(fname, 66, 0666) + yaffs_close(fd) + print "Created ", fname, " result ", fd + fdx = yaffs_open(fname, 0301, 0666) + print "Attempt to create with O_EXCL existing file returned ", fdx + yaffs_unlink(fname) + fdx = yaffs_open(fname, 0301, 0666) + print "Attempt to create with O_EXCL non-existing file returned ", fdx + root = "/yaffs2"