-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Evaluate all/0 and groups/0 in one go
Summary: Instead of having two separate requests, let's have only one. Reviewed By: michalmuskala Differential Revision: D50691891 fbshipit-source-id: b5207716d270d1a010d57f95501ee1af5cb71927
- Loading branch information
1 parent
928d26a
commit 0c8ee9f
Showing
17 changed files
with
134 additions
and
173 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_SUITE_ct_all.expected
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_SUITE_ct_groups.expected
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_dynamic_SUITE_ct_all.expected
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_dynamic_SUITE_ct_groups.expected
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_exception_SUITE.expected
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
crates/erlang_service/fixtures/common_test_incomplete_SUITE.expected
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ng_service/fixtures/common_test_SUITE.erl → ...erlang_service/fixtures/ct_info_SUITE.erl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-module(common_test_SUITE). | ||
-module(ct_info_SUITE). | ||
|
||
-export([all/0, groups/0]). | ||
-export([a/1, b/1, c/1]). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CT_INFO_ALL | ||
['a',{'group','group_a'}] | ||
|
||
CT_INFO_GROUPS | ||
[{'group_a',['b','c']}] |
2 changes: 1 addition & 1 deletion
2
...ce/fixtures/common_test_dynamic_SUITE.erl → ...ervice/fixtures/ct_info_dynamic_SUITE.erl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
crates/erlang_service/fixtures/ct_info_dynamic_SUITE.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CT_INFO_ALL | ||
['a',{'group','group_a'}] | ||
|
||
CT_INFO_GROUPS | ||
[{'group_a',['b','c']}] |
4 changes: 2 additions & 2 deletions
4
.../fixtures/common_test_exception_SUITE.erl → ...vice/fixtures/ct_info_exception_SUITE.erl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
crates/erlang_service/fixtures/ct_info_exception_SUITE.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Failed to fetch CT Info for "ct_info_exception_SUITE" |
2 changes: 1 addition & 1 deletion
2
...fixtures/common_test_incomplete_SUITE.erl → ...ice/fixtures/ct_info_incomplete_SUITE.erl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
crates/erlang_service/fixtures/ct_info_incomplete_SUITE.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Failed to fetch CT Info for "ct_info_incomplete_SUITE" |
Oops, something went wrong.