diff options
author | Ingela Anderton Andin <[email protected]> | 2011-05-30 08:25:42 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-05-30 08:58:49 +0200 |
commit | b4e89a35e7a443df6f3cf282d5bbdca118bbc4f9 (patch) | |
tree | 0885be9d5b528ba912ca5c6b4c7c1552bc8df693 /lib/odbc/test/odbc_query_SUITE.erl | |
parent | 7ae73012553fc54e84ad00fc00f7940cabf1edbb (diff) | |
download | otp-b4e89a35e7a443df6f3cf282d5bbdca118bbc4f9.tar.gz otp-b4e89a35e7a443df6f3cf282d5bbdca118bbc4f9.tar.bz2 otp-b4e89a35e7a443df6f3cf282d5bbdca118bbc4f9.zip |
Modernized the test suites
Moved functionality of special specs odbc.dynspec and odbc.spec.win
to the test suites.
Diffstat (limited to 'lib/odbc/test/odbc_query_SUITE.erl')
-rw-r--r-- | lib/odbc/test/odbc_query_SUITE.erl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/odbc/test/odbc_query_SUITE.erl b/lib/odbc/test/odbc_query_SUITE.erl index 8b8d1e7a40..61106fbf84 100644 --- a/lib/odbc/test/odbc_query_SUITE.erl +++ b/lib/odbc/test/odbc_query_SUITE.erl @@ -78,9 +78,6 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. - - - %%-------------------------------------------------------------------- %% Function: init_per_suite(Config) -> Config %% Config - [tuple()] @@ -91,7 +88,8 @@ end_per_group(_GroupName, Config) -> %% variable, but should NOT alter/remove any existing entries. %%-------------------------------------------------------------------- init_per_suite(Config) when is_list(Config) -> - application:start(odbc), + %% application:start(odbc), + odbc:start(), % make sure init_per_suite fails if odbc is not built [{tableName, odbc_test_lib:unique_table_name()}| Config]. %%-------------------------------------------------------------------- |