diff options
author | Lars Thorsen <[email protected]> | 2016-06-17 07:59:00 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2016-06-17 07:59:00 +0200 |
commit | 29864ba25d395aa57b88cd9d4357aa5a935b7535 (patch) | |
tree | eda5057896e315c46301b2e1d745d498ee2de4fe /lib/erl_docgen/test/erl_docgen_SUITE.erl | |
parent | 7c349de647fa1e56960201a72cc6c0d863137cd8 (diff) | |
parent | 395f31e3d22c1f4e273830122862769c78a7fcc1 (diff) | |
download | otp-29864ba25d395aa57b88cd9d4357aa5a935b7535.tar.gz otp-29864ba25d395aa57b88cd9d4357aa5a935b7535.tar.bz2 otp-29864ba25d395aa57b88cd9d4357aa5a935b7535.zip |
Merge branch 'lars/test-case-conformance/OTP-13695'
* lars/test-case-conformance/OTP-13695:
[cosTransactions] Update the test suites to follow the new style
[cosTime] Update the test suites to follow the new style
[cosProperty] Update the test suites to follow the new style
[cosNotification] Update the test suites to follow the new style
[cosFileTransfer] Fix mispelled module name
[cosEvent] Fix mispelled module name
[cosEventDomain] Fix mispelled module name
[cosFileTransfer] Update the test suites to follow the new style
[cosEventDomain] Update the test suites to follow the new style
[cosEvent] Update the test suites to follow the new style
[orber] Update the test suites to follow the new style
[erl_docgen] Update the test suites to follow the new style
[ic] Correct memory deallocation error
[ic] Update the test suites to follow the new style
Diffstat (limited to 'lib/erl_docgen/test/erl_docgen_SUITE.erl')
-rw-r--r-- | lib/erl_docgen/test/erl_docgen_SUITE.erl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/erl_docgen/test/erl_docgen_SUITE.erl b/lib/erl_docgen/test/erl_docgen_SUITE.erl index a202fefa9d..972fda5762 100644 --- a/lib/erl_docgen/test/erl_docgen_SUITE.erl +++ b/lib/erl_docgen/test/erl_docgen_SUITE.erl @@ -40,12 +40,10 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. -app() -> - [{doc, "Test that the erl_docgen app file is ok"}]. +%% Test that the erl_docgen app file is ok app(Config) when is_list(Config) -> - ok = ?t:app_test(erl_docgen). + ok = test_server:app_test(erl_docgen). -appup() -> - [{doc, "Test that the erl_docgen appup file is ok"}]. +%% Test that the erl_docgen appup file is ok appup(Config) when is_list(Config) -> - ok = ?t:appup_test(erl_docgen). + ok = test_server:appup_test(erl_docgen). |