summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/default/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-12-14 17:32:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-12-14 17:32:14 +0200
commitaf83df9be50a9383d0c54fb24b8e486a658a2a02 (patch)
tree5d937c9015c6438a60122743c7fb72ec30de32be /tests/cxx/tree/default/driver.cxx
parentc12b36470adb57100f1d5f22e3ddd6fc163f6ab4 (diff)
New default/fixed value initialization code
Now the default/fixed values are parsed by the compiler at compile time instead of the standard parsing code at runtime.
Diffstat (limited to 'tests/cxx/tree/default/driver.cxx')
-rw-r--r--tests/cxx/tree/default/driver.cxx48
1 files changed, 0 insertions, 48 deletions
diff --git a/tests/cxx/tree/default/driver.cxx b/tests/cxx/tree/default/driver.cxx
deleted file mode 100644
index 3c71222..0000000
--- a/tests/cxx/tree/default/driver.cxx
+++ /dev/null
@@ -1,48 +0,0 @@
-// file : tests/cxx/tree/default/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2006-2009 Code Synthesis Tools CC
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-// Test default attribute/element values.
-//
-
-#include <memory> // std::auto_ptr
-#include <iostream>
-
-#include "test.hxx"
-
-using namespace std;
-using namespace test;
-
-int
-main (int argc, char* argv[])
-{
- if (argc != 2)
- {
- cerr << "usage: " << argv[0] << " test.xml" << endl;
- return 1;
- }
-
- try
- {
- auto_ptr<type> r (root (argv[1], xml_schema::flags::dont_validate));
-
- cout << *r << endl
- << "default x: " << derived::x_default_value () << endl
- << "default y: " << derived::y_default_value () << endl
- << "fixed p: " << derived::p_default_value () << endl
- << "fixed q1: " << derived::q1_default_value () << endl
- << "fixed q2: " << derived::q2_default_value () << endl;
-
- // Serialize.
- //
- xml_schema::namespace_infomap map;
- map["t"].name = "test";
- root (cout, *r, map);
- }
- catch (xml_schema::exception const& e)
- {
- cerr << e << endl;
- return 1;
- }
-}