Move to using the new constructor that searched for the stdlib

to improve compile time.
This commit is contained in:
Jason Turner
2012-06-04 07:31:20 -06:00
parent 30104cc3ed
commit b7e1cf41e5
9 changed files with 14 additions and 22 deletions

View File

@@ -1,11 +1,10 @@
// Tests to make sure that the order in which function dispatches occur is correct
#include <chaiscript/chaiscript.hpp>
#include <chaiscript/chaiscript_stdlib.hpp>
int test_generic()
{
chaiscript::ChaiScript chai(chaiscript::Std_Lib::library());
chaiscript::ChaiScript chai;
try {
chai.eval("throw(runtime_error(\"error\"));");
@@ -23,7 +22,7 @@ int test_generic()
int test_1()
{
chaiscript::ChaiScript chai(chaiscript::Std_Lib::library());
chaiscript::ChaiScript chai;
try {
chai.eval("throw(1)", chaiscript::exception_specification<int>());
@@ -40,7 +39,7 @@ int test_1()
int test_2()
{
chaiscript::ChaiScript chai(chaiscript::Std_Lib::library());
chaiscript::ChaiScript chai;
try {
chai.eval("throw(1.0)", chaiscript::exception_specification<int, double>());
@@ -57,7 +56,7 @@ int test_2()
int test_5()
{
chaiscript::ChaiScript chai(chaiscript::Std_Lib::library());
chaiscript::ChaiScript chai;
try {
chai.eval("throw(runtime_error(\"error\"))", chaiscript::exception_specification<int, double, float, const std::string &, const std::exception &>());
@@ -83,7 +82,7 @@ int test_5()
int test_unhandled()
{
chaiscript::ChaiScript chai(chaiscript::Std_Lib::library());
chaiscript::ChaiScript chai;
try {
chai.eval("throw(\"error\")", chaiscript::exception_specification<int, double, float, const std::exception &>());