JavaScript Test Library - cause unimplemented tests to fail, and remove them from normal test runs, rs=brendan, bug 349823

This commit is contained in:
bclary%bclary.com 2006-08-23 05:21:02 +00:00
Родитель b5954b6954
Коммит 7099d304cf
22 изменённых файлов: 116 добавлений и 24 удалений

Просмотреть файл

@ -42,6 +42,9 @@
START("10.5.1 - ToAttributeName applied to the String type");
var actual = 'Test not implemented';
var expect = 'PASS';
END();
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,9 @@
START("10.5 ToAttributeName");
var actual = 'Test not implemented';
var expect = 'PASS';
END();
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,9 @@
START("10.6.1 - ToXMLName applied to the String type");
var actual = 'Test not implemented';
var expect = 'PASS';
END();
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,9 @@
START("10.6 - ToXMLName");
var actual = 'Test not implemented';
var expect = 'PASS';
END();
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,7 +42,9 @@
START("9.1.1.10 - XML [[ResolveValue]]");
// !FIX
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,9 @@
START("9.1.1.11 - XML [[Insert]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,4 +42,9 @@
START("9.1.1.12 - XML [[Replace]]");
END();
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,5 +42,9 @@
START("9.1.1.13 - XML Type [[AddInScopeNamespace]]");
var actual = 'Test not implemented';
var expect = 'PASS';
END();
TEST(1, expect, actual);
END();

Просмотреть файл

@ -40,4 +40,9 @@
START("9.1.1.4 - XML [[DeleteByIndex]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -43,4 +43,9 @@
// XML Type [[Default Value]]
START("9.1.1.5 - XML [[Default Value]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,10 @@
START("9.1.1.7 - XML [[DeepCopy]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -43,5 +43,10 @@
// XML Type [[Descendants]]
START("9.1.1.8 - XML [[Descendants]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,10 @@
START("9.2.1.10 XMLList [[ResolveValue]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,9 @@
START("9.2.1.3 XMLList [[Delete]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();
END();

Просмотреть файл

@ -42,5 +42,10 @@
START("9.2.1.4 XMLList [[DefaultValue]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,11 @@
START("9.2.1.5 XMLList [[HasProperty]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,6 +42,10 @@
START("9.2.1.6 XMLList [[Append]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,7 +42,10 @@
START("9.2.1.7 XMLList [[DeepCopy]]");
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -42,4 +42,9 @@
START("13.4.4.1 - XML Constructor");
END();
var actual = 'Test not implemented';
var expect = 'PASS';
TEST(1, expect, actual);
END();

Просмотреть файл

@ -29,7 +29,7 @@ startTest();
// global property is false
// test cases in which the exec returns null
// testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
AddTestCase("NO TESTS EXIST", "PASSED", "Test not implemented");
test();

Просмотреть файл

@ -56,6 +56,6 @@ startTest();
*/
// testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
AddTestCase( "NO TESTS EXIST", "PASSED", "Test not implemented");
test();

Просмотреть файл

@ -27,12 +27,6 @@ e4x/Regress/regress-278112.js
#
js1_5/Regress/regress-173067.js
#
# The following tests are excluded from normal
# runs as they are not fixed and cause the shell/browser
# to hang.
#
ecma_3/RegExp/regress-307456.js
#
# per comment in bug, this test is obsolete
# for spidermonkey and rhino.
#
@ -63,3 +57,27 @@ js1_3/Script/delete-001.js
js1_3/Script/function-001-n.js
js1_3/regress/delete-001.js
js1_3/regress/function-001-n.js
#
# tests not yet implemented
#
e4x/TypeConversion/10.5.1.js
e4x/TypeConversion/10.5.js
e4x/TypeConversion/10.6.1.js
e4x/TypeConversion/10.6.js
e4x/Types/9.1.1.10.js
e4x/Types/9.1.1.11.js
e4x/Types/9.1.1.12.js
e4x/Types/9.1.1.13.js
e4x/Types/9.1.1.4.js
e4x/Types/9.1.1.5.js
e4x/Types/9.1.1.7.js
e4x/Types/9.1.1.8.js
e4x/Types/9.2.1.10.js
e4x/Types/9.2.1.3.js
e4x/Types/9.2.1.4.js
e4x/Types/9.2.1.5.js
e4x/Types/9.2.1.6.js
e4x/Types/9.2.1.7.js
e4x/XML/13.4.4.1.js
ecma_2/RegExp/exec-001.js
ecma_2/String/replace-001.js