• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

test-xml/H22-Jun-2011-168162

COPYINGH A D19-Sep-201034.3 KiB675553

INSTALLH A D19-Sep-2010384 1812

NEWSH A D22-Jun-20116.3 KiB192126

READMEH A D19-Sep-20101.2 KiB3724

TODOH A D10-Apr-20071.3 KiB4430

common.scmH A D22-Jun-20111.2 KiB3716

core.scmH A D22-Jun-201173.5 KiB2,1191,856

events.scmH A D22-Jun-201110.5 KiB295242

fdl.texinfoH A D25-Jan-200520.5 KiB453377

ls.scmH A D22-Jun-20119.1 KiB283124

parser.scmH A D22-Jun-20119.8 KiB318275

tests.scmH A D19-Sep-2010180.6 KiB4,8754,589

README

1Updated: 2010/09/18 20:41:18 julian
2
3
4
5  Thanks for downloading SDOM!  See the INSTALL file for installation
6instructions.
7
8REQUIREMENTS
9============
10
11  SDOM requires a Scheme platform that supports the R6RS specification.  In
12particular, SDOM is known to work with GNU Guile version 3.0 or greater.  GNU
13Guile is available from:
14
15  http://www.gnu.org/software/guile
16
17
18
19TESTS
20=====
21
22  SDOM comes with a test suite based on the Java DOM test suite.  Load or
23compile the tests file in your Scheme environment and run the 'run-tests'
24procedure to execute all the tests in the SDOM test suite -- the output will
25indicate whether or not each test passed and how long it took to execute.  You
26can also run individual tests by calling their corresponding procedures, which
27have the same names as the strings in the master report.  For example, the
28output of run-tests might contain:
29
30  documentadoptnode-12..................#t (22778)
31  documentadoptnode-13..................#t (22841)
32  documentadoptnode-14..................#t (53332)
33  documentadoptnode-15..................#f (6092)
34
35...meaning that you can run the 'documentadoptnode-15' procedure to execute the
36documentadoptnode-15 test by itself (and get the error that caused it fail).
37