Skip to content

Commit

Permalink
Suppress export_all warnings in common test suites
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Feb 13, 2024
1 parent 27dccd8 commit 58eb3b0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/ra_dbg_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
%%
-module(ra_dbg_SUITE).

-compile(nowarn_export_all).
-compile(export_all).

-include_lib("common_test/include/ct.hrl").
Expand Down
1 change: 1 addition & 0 deletions test/ra_directory_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
%%
-module(ra_directory_SUITE).

-compile(nowarn_export_all).
-compile(export_all).

-export([
Expand Down
1 change: 1 addition & 0 deletions test/ra_log_ets_SUITE.erl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-module(ra_log_ets_SUITE).

-compile(nowarn_export_all).
-compile(export_all).

-export([
Expand Down
1 change: 1 addition & 0 deletions test/ra_log_meta_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
%%
-module(ra_log_meta_SUITE).

-compile(nowarn_export_all).
-compile(export_all).

-include_lib("common_test/include/ct.hrl").
Expand Down
1 change: 1 addition & 0 deletions test/ra_log_props_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
%% Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.
%%
-module(ra_log_props_SUITE).
-compile(nowarn_export_all).
-compile(export_all).

-include_lib("proper/include/proper.hrl").
Expand Down
1 change: 1 addition & 0 deletions test/ra_machine_ets_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
%%
-module(ra_machine_ets_SUITE).

-compile(nowarn_export_all).
-compile(export_all).

-export([
Expand Down
1 change: 1 addition & 0 deletions test/ra_props_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
%% Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.
%%
-module(ra_props_SUITE).
-compile(nowarn_export_all).
-compile(export_all).

-include("src/ra.hrl").
Expand Down

0 comments on commit 58eb3b0

Please sign in to comment.