Issue build.xml - DOM 2 Core - ECMAScript test file locations
[email protected] (Robert Clary)
| Newsgroups | gmane.comp.web.dom.test-suites.general |
|---|---|
| Message-ID | <[email protected]> |
It appears that the DOM 2 Core build instructions place the test files
for ECMAScript in an incorrect location build/level2/core/tests rather
than build/level2/core/ecmascript/tests
I propose the following change:
Index: build.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/build.xml,v
retrieving revision 1.84
diff -u -r1.84 build.xml
--- build.xml 6 Feb 2003 05:58:30 -0000 1.84
+++ build.xml 6 Feb 2003 15:34:31 -0000
@@ -1203,7 +1203,7 @@
<target name="dom2-core-gen-jsunit" depends="dom2-interfaces,dom2-dtd">
<mkdir dir="${build.dir}/level2/core/ecmascript/tests"/>
<copy file="ecmascript/DOMTestCase.js"
todir="${build.dir}/level2/core/ecmascript/tests"/>
- <copy todir="${build.dir}/level2/core/tests">
+ <copy todir="${build.dir}/level2/core/ecmascript/tests">
<fileset dir="tests/level2/core/files" excludes="*.bak"/>
</copy>
/bc