HomeSort by relevance Sort by last modified time
    Searched refs:test_dir (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/e2fsprogs/tests/
test_script.in 42 for test_dir in $TESTS
44 test_name=`echo $test_dir | sed -e 's;.*/;;'`
45 if [ -f $test_dir ] ; then
48 if [ ! -d $test_dir ] ; then
52 if [ -z "`ls $test_dir`" ]; then
55 if [ -f $test_dir/name ]; then
56 test_description=`cat $test_dir/name`
61 if [ -f $test_dir/script ]; then
62 . $test_dir/script
  /art/test/
run-test 35 test_dir="test-$$"
36 tmp_dir="/tmp/${test_dir}"
41 export DEX_LOCATION=/data/run-test/${test_dir}
144 test_dir=`basename "$oldwd"`
146 test_dir="$1"
149 if [ '!' -d "$test_dir" ]; then
150 td2=`echo ${test_dir}-*`
152 echo "${test_dir}: no such test directory" 1>&2
155 test_dir="$td2"
195 cd "$test_dir"
    [all...]
  /dalvik/tests/
run-test 117 test_dir=`basename "$oldwd"`
119 test_dir="$1"
122 if [ '!' -d "$test_dir" ]; then
123 td2=`echo ${test_dir}-*`
125 echo "${test_dir}: no such test directory" 1>&2
128 test_dir="$td2"
167 cd "$test_dir"
168 test_dir=`pwd`
170 td_info="${test_dir}/${info}"
171 td_expected="${test_dir}/${expected}
    [all...]
  /external/chromium/chrome/browser/net/
url_request_mock_link_doctor_job.cc 16 FilePath test_dir; local
17 bool success = PathService::Get(chrome::DIR_TEST_DATA, &test_dir);
19 return test_dir.AppendASCII("mock-link-doctor.html");
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.cc 67 FilePath test_dir; local
68 PathService::Get(base::DIR_SOURCE_ROOT, &test_dir);
69 test_dir = test_dir.AppendASCII("net");
70 test_dir = test_dir.AppendASCII("data");
71 test_dir = test_dir.AppendASCII("ftp");
86 EXPECT_TRUE(file_util::ReadFileToString(test_dir.AppendASCII(test_files[i]),
96 test_dir.AppendASCII(std::string(test_files[i]) + ".expected")
    [all...]
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser_unittest.cc 27 base::FilePath test_dir; local
28 PathService::Get(base::DIR_SOURCE_ROOT, &test_dir);
29 test_dir = test_dir.AppendASCII("net");
30 test_dir = test_dir.AppendASCII("data");
31 test_dir = test_dir.AppendASCII("ftp");
45 EXPECT_TRUE(file_util::ReadFileToString(test_dir.AppendASCII(GetParam()),
55 test_dir.AppendASCII(std::string(GetParam()) + ".expected")
    [all...]
  /external/chromium/chrome/browser/
popup_blocker_browsertest.cc 28 FilePath test_dir(kTestDir);
29 GURL url(ui_test_utils::GetTestUrl(test_dir, file_name));
media_uitest.cc 116 FilePath test_dir; local
119 InitializeForLayoutTest(test_dir, media_test_dir, kNoHttpPort);
124 test_dir, media_test_dir.AppendASCII(kResources[i]));
  /external/chromium_org/chrome/test/webdriver/test/
java_tests.py 59 test_dir = util.MakeTempDir()
65 os.makedirs(os.path.join(test_dir, *required_dir))
71 os.path.join(test_dir, *keystore_path))
73 os.path.join(test_dir, 'common'))
75 os.path.join(test_dir, test_jar))
91 test_dir, 'org.openqa.selenium.chrome.ChromeDriverTests',
95 def _RunAntTest(test_dir, test_class, class_path, sys_props):
99 test_dir: the directory to run the tests in.
145 ant_file = open(os.path.join(test_dir, 'build.xml'), 'w')
150 util.RunCommand(['ant', 'test'], cwd=test_dir)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http_server.py 62 test_dir = self._port_obj.layout_tests_dir()
63 js_test_resources_dir = self._filesystem.join(test_dir, "fast", "js", "resources")
64 media_resources_dir = self._filesystem.join(test_dir, "media")
65 mime_types_path = self._filesystem.join(test_dir, "http", "conf", "mime.types")
66 cert_file = self._filesystem.join(test_dir, "http", "conf", "webkit-httpd.pem")
69 document_root = self._filesystem.join(test_dir, "http", "tests")
75 '-f', "\"%s\"" % self._get_apache_config_file_path(test_dir, output_dir),
124 '-f', "\"%s\"" % self._get_apache_config_file_path(test_dir, output_dir),
136 def _get_apache_config_file_path(self, test_dir, output_dir):
139 test_dir: absolute path to the LayoutTests directory
    [all...]
  /external/chromium_org/tools/playback_benchmark/
run.py 13 python run.py -t <test_dir>
24 driver = playback_driver.PlaybackRequestHandler(options.test_dir)
33 parser.add_option("-t", "--test-dir", dest="test_dir",
37 if not options.test_dir:
playback_driver.py 85 test_dir: directory containing test files.
90 def __init__(self, test_dir, test_callback=None, script_dir=os.getcwd()):
91 self.test_dir = test_dir
105 self._StartTest(handler, self.test_dir, run_count)
113 def _StartTest(self, handler, test_dir, run_count):
116 cache_data = ReadJSON(os.path.join(test_dir, 'cache.json'))
120 responses_dir = os.path.join(test_dir, 'responses')
129 data = ReadFile(os.path.join(test_dir, 'data.json'))
  /external/chromium_org/chrome/test/chromedriver/test/
run_java_tests.py 78 test_dir = util.MakeTempDir()
85 os.makedirs(os.path.join(test_dir, *required_dir))
90 os.path.join(test_dir, *keystore_path))
91 util.Unzip(os.path.join(java_tests_src_dir, 'common.zip'), test_dir)
93 os.path.join(test_dir, test_jar))
113 test_dir)
114 class_path += ':' + test_dir
117 test_dir, 'org.openqa.selenium.chrome.ChromeDriverTests',
121 def _RunAntTest(test_dir, test_class, class_path, sys_props, jvm_args, verbose):
125 test_dir: the directory to run the tests in
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_crash_browsertest.cc 21 base::FilePath test_dir; variable
22 ASSERT_TRUE(PathService::Get(DIR_TEST_DATA, &test_dir));
23 gpu_test_dir_ = test_dir.AppendASCII("gpu");
gpu_functional_browsertest.cc 31 base::FilePath test_dir; variable
32 ASSERT_TRUE(PathService::Get(DIR_TEST_DATA, &test_dir));
33 gpu_test_dir_ = test_dir.AppendASCII("gpu");
  /external/chromium_org/chrome/browser/extensions/
extension_icon_manager_unittest.cc 106 base::FilePath test_dir; local
107 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_dir));
108 base::FilePath manifest_path = test_dir.AppendASCII(
148 base::FilePath test_dir; local
149 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_dir));
150 base::FilePath manifest_path = test_dir.AppendASCII(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 20 self.test_dir = tempfile.mkdtemp()
21 sys.path.append(self.test_dir)
22 self.package_dir = os.path.join(self.test_dir,
33 os.rmdir(self.test_dir)
34 self.assertNotEqual(sys.path.count(self.test_dir), 0)
35 sys.path.remove(self.test_dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 20 self.test_dir = tempfile.mkdtemp()
21 sys.path.append(self.test_dir)
22 self.package_dir = os.path.join(self.test_dir,
33 os.rmdir(self.test_dir)
34 self.assertNotEqual(sys.path.count(self.test_dir), 0)
35 sys.path.remove(self.test_dir)
  /external/chromium_org/chrome/test/perf/
indexeddb_uitest.cc 54 base::FilePath test_dir; local
55 PathService::Get(chrome::DIR_TEST_DATA, &test_dir);
56 return test_dir.AppendASCII("indexeddb");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 16 test_dir = os.path.dirname(__file__) variable
17 proj_dir = os.path.normpath(os.path.join(test_dir, ".."))
18 grammar_path = os.path.join(test_dir, "..", "Grammar.txt")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 16 test_dir = os.path.dirname(__file__) variable
17 proj_dir = os.path.normpath(os.path.join(test_dir, ".."))
18 grammar_path = os.path.join(test_dir, "..", "Grammar.txt")
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
external_filesystem_apitest.cc 63 // test_dir/ - - subdir/
77 // All files except test_dir/empty_file.foo, which is empty, initially contain
94 base::FilePath test_dir = mount_point_dir->AppendASCII("test_dir");
95 if (!file_util::CreateDirectory(test_dir))
98 base::FilePath test_subdir = test_dir.AppendASCII("empty_test_dir");
102 test_subdir = test_dir.AppendASCII("subdir");
106 base::FilePath test_file = test_dir.AppendASCII("test_file.xul");
110 test_file = test_dir.AppendASCII("test_file.xul.foo");
114 test_file = test_dir.AppendASCII("test_file.tiff")
    [all...]
  /external/e2fsprogs/tests/defaults/
e_script 6 if [ -f $test_dir/setup ]; then
7 . $test_dir/setup
  /external/chromium/chrome/common/
zip_unittest.cc 45 FilePath test_dir; local
46 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_dir));
47 test_dir = test_dir.AppendASCII("zip");
48 TestUnzipFile(test_dir.Append(filename), expect_hidden_files);
  /external/markdown/MarkdownTest/
MarkdownTest.pl 19 my $test_dir = "Tests";
26 "testdir=s" => \$test_dir,
37 unless (-d $test_dir) { die "'$test_dir' is not a directory.\n"; }
45 foreach my $testfile (glob "$test_dir/*.text") {

Completed in 1891 milliseconds

1 2 3