/external/webkit/WebCore/manual-tests/ |
timeout-test.html | 3 <title>10m10s Timeout Test</title> 6 To run this test, both timeout-test.html and timeout-test.php must be served over http.<br> 9 <form action="timeout-test.php" method="post"> 10 <input type="submit" value="Run Test">
|
/external/v8/test/cctest/ |
cctest.status | 30 # BUG(281): This test fails on some Linuxes. 31 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux 33 # BUG(382): Weird test. Can't guarantee that it never times out. 34 test-api/ApplyInterruption: PASS || TIMEOUT 36 # These tests always fail. They are here to test test.py. If 37 # they don't fail then test.py has failed. 38 test-serialize/TestThatAlwaysFails: FAIL 39 test-serialize/DependentTestThatAlwaysFails: FAIL 43 # BUG(240): Test seems flaky on ARM [all...] |
/external/bluetooth/glib/tests/ |
Makefile.am | 32 module_test_exp = module-test.exp 34 module-test.exp: module-test.o 35 dlltool --output-exp module-test.exp module-test.o 37 spawn_test_win32_gui = spawn-test-win32-gui 50 iochannel-test-infile \ 58 CXX_TEST = cxx-test 60 cxx_test_SOURCES = cxx-test.C 74 errorcheck-mutex-test [all...] |
makefile.msc.in | 1 ## Makefile for building the GLib test programs with Microsoft C 21 atomic-test.exe \ 22 array-test.exe \ 23 asyncqueue-test.exe \ 24 base64-test.exe \ 25 bit-test.exe \ 26 bookmarkfile-test.exe \ 27 child-test.exe \ 28 checksum-test.exe \ 29 completion-test.exe [all...] |
/external/v8/tools/visual_studio/ |
v8_cctest.vcproj | 139 RelativePath="..\..\test\cctest\cctest.cc" 143 RelativePath="..\..\test\cctest\test-alloc.cc" 147 RelativePath="..\..\test\cctest\test-api.cc" 151 RelativePath="..\..\test\cctest\test-assembler-ia32.cc" 155 RelativePath="..\..\test\cctest\test-ast.cc" 159 RelativePath="..\..\test\cctest\test-compiler.cc [all...] |
v8_cctest_x64.vcproj | 139 RelativePath="..\..\test\cctest\cctest.cc" 143 RelativePath="..\..\test\cctest\test-alloc.cc" 147 RelativePath="..\..\test\cctest\test-api.cc" 151 RelativePath="..\..\test\cctest\test-assembler-x64.cc" 155 RelativePath="..\..\test\cctest\test-ast.cc" 159 RelativePath="..\..\test\cctest\test-compiler.cc [all...] |
/external/icu4c/test/cintltst/ |
cloctst.h | 19 /*C API TEST FOR LOCALE */ 22 * Test functions to set and get data fields 35 * Test getAvailableLocales 39 * Test functions to set and access a custom data directory 43 * Test functions to test get ISO countries and Languages 47 * Test functions to test get ISO3 countries and Languages Fallback 51 * Test functions to test get ISO3 countries and Languages for Uninstalled locale [all...] |
cnumtst.h | 15 /* C API TEST FOR NUMBER FORMAT */ 27 * The function used to test the Number format API 32 * The function used to test parsing of numbers in UNUM_SPELLOUT style 37 * The function used to test significant digits in the Number format API 42 * The function used to test the Number format API with padding 47 * The function used to test the Number format API with padding 54 * Test RBNF access through unumfmt APIs. 59 * Test some Currency stuff
|
/frameworks/base/test-runner/src/android/test/ |
BundleTestListener.java | 17 package android.test; 25 * A {@link TestListener} that adds test case results to a bundle. 39 public void addError(Test test, Throwable t) { 40 mBundle.putString(getComboName(test), BaseTestRunner.getFilteredTrace(t)); 44 public void addFailure(Test test, junit.framework.AssertionFailedError t) { 45 mBundle.putString(getComboName(test), BaseTestRunner.getFilteredTrace(t)); 49 public void endTest(Test test) { [all...] |
/external/icu4c/test/intltest/ |
itmajor.cpp | 8 * MajorTestLevel is the top level test class for everything in the directory "IntlWork". 42 suite test; \ 43 callTest(test, par); \ 53 IntlTestUtilities test; local 54 callTest( test, par ); 62 IntlTestNormalize test; local 63 callTest( test, par ); 72 IntlTestCollator test; local 73 callTest( test, par ); 82 RegexTest test; local 92 IntlTestFormat test; local 102 IntlTestTransliterator test; local 112 IntlTestRBBI test; local 121 IntlTestRBNF test; local 130 RbnfRoundTripTest test; local 140 ICUServiceTest test; local 149 TestIDNA test; local 158 ConversionTest test; local 168 IntlTestRBNFParse test; local 177 CharsetDetectionTest test; local 187 IntlTestSpoof test; local [all...] |
dtifmtts.h | 18 * Test basic functionality of various API functions 30 * Test formatting 35 * Test formatting using user defined DateIntervalInfo 40 * Stress test -- stress test formatting on 40 locales 46 * Test formatting against expected result 51 * Test formatting against expected result using user defined 57 * Stress test formatting
|
/dalvik/dx/src/junit/extensions/ |
ActiveTestSuite.java | 7 * test in a separate thread and waits until all 35 public void runTest(final Test test, final TestResult result) { 40 //ActiveTestSuite.super.runTest(test, result); 41 test.run(result); 43 ActiveTestSuite.this.runFinished(test); 60 synchronized public void runFinished(Test test) {
|
/dalvik/dx/src/junit/framework/ |
TestResult.java | 8 * a test case. It is an instance of the Collecting Parameter pattern. 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 13 * @see Test 33 public synchronized void addError(Test test, Throwable t) { 34 fErrors.addElement(new TestFailure(test, t)); 36 ((TestListener)e.nextElement()).addError(test, t); 43 public synchronized void addFailure(Test test, AssertionFailedError t) { 44 fFailures.addElement(new TestFailure(test, t)) [all...] |
/dalvik/dx/tests/040-dex-constructor/ |
info.txt | 1 This is a smoke test of dex conversion, which ensures that the 3 file are not checked for correctness. This test is of a classfile with
|
/dalvik/libcore/junit/src/main/java/junit/extensions/ |
ActiveTestSuite.java | 7 * test in a separate thread and waits until all 35 public void runTest(final Test test, final TestResult result) { 40 //ActiveTestSuite.super.runTest(test, result); 41 test.run(result); 43 ActiveTestSuite.this.runFinished(test); 60 synchronized public void runFinished(Test test) {
|
/dalvik/libcore/junit/src/main/java/junit/framework/ |
TestResult.java | 8 * a test case. It is an instance of the Collecting Parameter pattern. 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 13 * @see Test 33 public synchronized void addError(Test test, Throwable t) { 34 fErrors.addElement(new TestFailure(test, t)); 36 ((TestListener)e.nextElement()).addError(test, t); 43 public synchronized void addFailure(Test test, AssertionFailedError t) { 44 fFailures.addElement(new TestFailure(test, t)) [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
IntToString.java | 1 /* part of test for array problem */ 2 package android.test.anno;
|
/external/clearsilver/cs/ |
test13.cs | 2 <?cs each:test = EvarTests ?> 3 <?cs lvar:test ?>
|
/external/dbus/test/data/valid-service-files/ |
debug-shell-echo-fail.service | 3 Exec=/home/quinticent/devel/dbus-branch/dbus_1_0/test/test-shell-service "this should 'fail' because of an unterminated quote
|
/external/e2fsprogs/tests/d_loaddump/ |
expect | 1 debugfs load/dump test 2 mke2fs -Fq -b 1024 ./test.img 512 4 debugfs -R ''write test.data test_data'' -w ./test.img 15 debugfs -R ''dump test_data test.verify'' ./test.img 17 cmp test.data test.verify
|
/external/junit/src/junit/framework/ |
TestResult.java | 8 * a test case. It is an instance of the Collecting Parameter pattern. 9 * The test framework distinguishes between <i>failures</i> and <i>errors</i>. 13 * @see Test 33 public synchronized void addError(Test test, Throwable t) { 34 fErrors.addElement(new TestFailure(test, t)); 36 ((TestListener)e.nextElement()).addError(test, t); 43 public synchronized void addFailure(Test test, AssertionFailedError t) { 44 fFailures.addElement(new TestFailure(test, t)) [all...] |
/external/junit/src/junit/swingui/ |
TestRunView.java | 5 import junit.framework.Test; 16 * Returns the currently selected Test in the View 18 public Test getSelectedTest(); 26 public void revealFailure(Test failure); 28 * Adds the TestRunView to the test run views tab 34 public void aboutToStart(Test suite, TestResult result); 36 * Informs that the run of the test suite has finished 38 public void runFinished(Test suite, TestResult result);
|
/external/stlport/test/compiler/StTerm-order/ |
Makefile.inc | 3 PRGNAME = stterm-test 4 SRC_CC = stterm-test.cc
|
/external/webkit/LayoutTests/storage/domstorage/events/ |
case-sensitive-expected.txt | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 11 storage.foo = 'test' 14 storage.foo = 'test' 16 storage.foo = 'TEST' 25 storage.foo = 'test' 28 storage.foo = 'test' 30 storage.foo = 'TEST' 36 TEST COMPLETE
|
/external/webkit/LayoutTests/storage/ |
success-callback-expected.txt | 1 This test confirms that a successful transaction - both with and without a statement - receives its successCallback 4 Test Complete
|