aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/fs.h
diff options
context:
space:
mode:
authorNeeraj Kumar2010-06-18 08:45:57 +0000
committerNeeraj Kumar2010-06-18 08:45:57 +0000
commit7b8693757c6c7631ca4f54d10761517c2bcb1792 (patch)
treefcde450b360affcfb0fbeab7f191baab6d3a1b92 /engines/testbed/fs.h
parentfb210bd45fc5f02038f3c5602d9ba602fd60b1a0 (diff)
downloadscummvm-rg350-7b8693757c6c7631ca4f54d10761517c2bcb1792.tar.gz
scummvm-rg350-7b8693757c6c7631ca4f54d10761517c2bcb1792.tar.bz2
scummvm-rg350-7b8693757c6c7631ca4f54d10761517c2bcb1792.zip
added testcase for writing files in the filesystem
svn-id: r50009
Diffstat (limited to 'engines/testbed/fs.h')
-rw-r--r--engines/testbed/fs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/testbed/fs.h b/engines/testbed/fs.h
index f1a3e8a37d..c421725407 100644
--- a/engines/testbed/fs.h
+++ b/engines/testbed/fs.h
@@ -7,10 +7,15 @@ namespace Testbed {
namespace FStests {
+// Note: These tests require a game-data directory
+// So would work if game-path is set in the launcher or invoked as ./scummvm --path="path-to-testbed-data" testbed
+// from commandline
+
// Helper functions for FS tests
// will contain function declarations for FS tests
-bool testOpenFile();
+bool testReadFile();
+bool testWriteFile();
// add more here
}