Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:FOO

47   e.toString = function() { throw new Error("foo bar"); }
72 os.mkdirp(TEST_DIR + "/dir/foo");
74 os.system('ls', [TEST_DIR + '/dir/foo']);
78 os.mkdirp(TEST_DIR + "/dir2/foo");
79 os.system("ls", [TEST_DIR + "/dir2/foo"]);
81 os.mkdirp(TEST_DIR + "/dir2/foo");
82 os.mkdirp(TEST_DIR + "/dir2/foo/");
87 os.system("sh", ["-c", "echo foo > " + TEST_DIR + "/file1"]);
90 assertThrows("os.mkdirp(TEST_DIR + '/file1/foo');", "mkdir over file2");
92 assertThrows("os.mkdirp(TEST_DIR + '/file1/foo/');", "mkdir over file4");
114 os.setenv("FOO", "bar");
116 assertTrue(/FOO=bar/.test(environment));
159 arg_error("os.setenv('FOO=bar');");
162 arg_error("os.mkdirp('foo', 0, 0)");
163 arg_error("os.chdir('foo', 'bar')");
164 arg_error("os.rmdir('foo', 'bar');");
168 arg_error("os.system('ls', 'foo');");
170 arg_error("os.system('ls', [], 'foo');");
171 arg_error("os.system('ls', [], -1, 'foo');");
172 arg_error("os.mkdirp('foo', 'bar');");