summaryrefslogtreecommitdiff
path: root/test/testutils
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2010-12-05 12:01:07 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2010-12-05 12:01:07 +0000
commit464f187bfc4cdd04dc09041ddec56df1e5597d1d (patch)
tree03f8e7fb42320adfba11314d1d9ccb2953e182a3 /test/testutils
parent3f1cf7d9bdba4e53b45952682ee32e261d12fa71 (diff)
downloadlibdom-464f187bfc4cdd04dc09041ddec56df1e5597d1d.tar.gz
libdom-464f187bfc4cdd04dc09041ddec56df1e5597d1d.tar.bz2
Remove vestigial domts C file and mark all known failures so test suite for level1/core passes
svn path=/trunk/dom/; revision=10998
Diffstat (limited to 'test/testutils')
-rw-r--r--test/testutils/domtscondition.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/testutils/domtscondition.c b/test/testutils/domtscondition.c
deleted file mode 100644
index 39f6c68..0000000
--- a/test/testutils/domtscondition.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * This file is part of libdom test suite.
- * Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
- * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
- */
-
-#include <stdbool.h>
-
-/**
- * Just simple functions which meet the needs of DOMTS conditions
- */
-
-bool less(int excepted, int actual)
-{
- return actual < excepted;
-}
-
-bool less_or_equals(int excepted, int actual)
-{
- return actual <= excepted;
-}
-
-bool greater(int excepted, int actual)
-{
- return actual > excepted;
-}
-
-bool greater_or_equals(int excepted, int actual)
-{
- return actual >= excepted;
-}