From 294ec3ddf9786bddb329646010b165768870ce42 Mon Sep 17 00:00:00 2001 From: Charles Manning Date: Wed, 19 May 2010 12:46:51 +1200 Subject: [PATCH 1/1] yaffs: Add python test for O_EXCL Check that OEXCL really works according to what's on the box. Signed-off-by: Charles Manning --- direct/python/examples.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/direct/python/examples.py b/direct/python/examples.py index 11e5b8b..6b0c045 100644 --- 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" -- 2.30.2