Merge commit '01a301d1b606b84d986b735049e7155d2f4cd6aa'
[bpt/guile.git] / test-suite / tests / sxml.match.test
CommitLineData
400a5dcb
LC
1;;;; sxml.simple.test --- (sxml simple) -*- mode: scheme; coding: utf-8; -*-
2;;;;
d10f7b57 3;;;; Copyright (C) 2010, 2012 Free Software Foundation, Inc.
400a5dcb
LC
4;;;;
5;;;; This library is free software; you can redistribute it and/or
6;;;; modify it under the terms of the GNU Lesser General Public
7;;;; License as published by the Free Software Foundation; either
8;;;; version 3 of the License, or (at your option) any later version.
9;;;;
10;;;; This library is distributed in the hope that it will be useful,
11;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13;;;; Lesser General Public License for more details.
14;;;;
15;;;; You should have received a copy of the GNU Lesser General Public
16;;;; License along with this library; if not, write to the Free Software
17;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19(define-module (test-sxml-match)
20 #:use-module (test-suite lib)
21 #:use-module (sxml match))
22
23(define-syntax run-test
24 (syntax-rules ()
25 ((_ desc test expected-result)
26 (pass-if desc (equal? test expected-result)))))
27
28\f
29;;;
30;;; Include upstream source file.
31;;;
32
33;; This file was taken unmodified from
34;; <http://planet.plt-scheme.org/package-source/jim/sxml-match.plt/1/1/> on
35;; 2010-05-24. It was written by Jim Bender <benderjg2@aol.com> and released
36;; under the MIT/X11 license
37;; <http://www.gnu.org/licenses/license-list.html#X11License>.
38;;
39;; It was modified to remove the `#lang' and `require' forms as well as the
40;; `run-test' macro, replaced by the one above.
41;;
42;; FIXME: The `xyzpq' variable in there is originally named `x' but using that
43;; name triggers a psyntax "identifier out of context" error.
44
d10f7b57 45(include-from-path "tests/sxml-match-tests.ss")