diff options
author | Fredrik Gustafsson <[email protected]> | 2013-11-05 12:59:37 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-11-05 12:59:37 +0100 |
commit | 84fd7aa216f0f7f2a1d891b1f0cb1461272dc727 (patch) | |
tree | 5bfde1476c5523f5979667861c7239415df7ed27 /lib/xmerl/test/xmerl_SUITE.erl | |
parent | 00a3dade2d58836bca334be36843775343e5e269 (diff) | |
parent | 3702a386fd0121bde1b1d02c65de66245e9518cc (diff) | |
download | otp-84fd7aa216f0f7f2a1d891b1f0cb1461272dc727.tar.gz otp-84fd7aa216f0f7f2a1d891b1f0cb1461272dc727.tar.bz2 otp-84fd7aa216f0f7f2a1d891b1f0cb1461272dc727.zip |
Merge branch 'danielwhite/xmerl-xpath-resolve-context-namespaces/OTP-11461' into maint
* danielwhite/xmerl-xpath-resolve-context-namespaces/OTP-11461:
xmerl: Use context namespace declarations to resolve prefix node tests
xmerl: Look up unknown prefixes in xmlContext when matching attributes
xmerl: Add tests for XPath queries that resolve the context namespace
Diffstat (limited to 'lib/xmerl/test/xmerl_SUITE.erl')
-rw-r--r-- | lib/xmerl/test/xmerl_SUITE.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/xmerl/test/xmerl_SUITE.erl b/lib/xmerl/test/xmerl_SUITE.erl index e21355f877..8432e66a97 100644 --- a/lib/xmerl/test/xmerl_SUITE.erl +++ b/lib/xmerl/test/xmerl_SUITE.erl @@ -42,7 +42,7 @@ %%---------------------------------------------------------------------- all() -> [{group, cpd_tests}, xpath_text1, xpath_main, - xpath_abbreviated_syntax, xpath_functions, + xpath_abbreviated_syntax, xpath_functions, xpath_namespaces, {group, misc}, {group, eventp_tests}, {group, ticket_tests}, {group, app_test}, {group, appup_test}]. @@ -205,6 +205,11 @@ xpath_functions(Config) -> ?line file:set_cwd(filename:join(?config(data_dir,Config),xpath)), ?line ok = xpath_abbrev:functions(). +xpath_namespaces(suite) -> []; +xpath_namespaces(Config) -> + ?line file:set_cwd(filename:join(?config(data_dir,Config),xpath)), + ?line ok = xpath_abbrev:namespaces(). + %%---------------------------------------------------------------------- latin1_alias(suite) -> []; |