-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test also with Erlang/OTP 26.2 (#316)
While at it, fix a 26.2 warning and a typo in proper_erlang_abstract_code.erl
- Loading branch information
Showing
5 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
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
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
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,6 +1,6 @@ | ||
%%% -*- coding: utf-8; erlang-indent-level: 2 -*- | ||
%%% ------------------------------------------------------------------- | ||
%%% Copyright 2010-2023 Manolis Papadakis <[email protected]>, | ||
%%% Copyright 2010-2024 Manolis Papadakis <[email protected]>, | ||
%%% Eirini Arvaniti <[email protected]>, | ||
%%% and Kostis Sagonas <[email protected]> | ||
%%% | ||
|
@@ -22,7 +22,7 @@ | |
%%% Author(s): Manolis Papadakis and Kostis Sagonas | ||
%%% Description: Options for rebar/rebar3 | ||
|
||
{minimum_otp_vsn, "21.0"}. | ||
{minimum_otp_vsn, "21.3"}. | ||
|
||
{erl_first_files, ["src/vararg.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
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,6 +1,6 @@ | ||
%%% -*- coding: utf-8; erlang-indent-level: 2 -*- | ||
%%% ------------------------------------------------------------------- | ||
%%% Copyright 2010-2023 Manolis Papadakis <[email protected]>, | ||
%%% Copyright 2010-2024 Manolis Papadakis <[email protected]>, | ||
%%% Eirini Arvaniti <[email protected]>, | ||
%%% and Kostis Sagonas <[email protected]> | ||
%%% | ||
|
@@ -19,7 +19,7 @@ | |
%%% You should have received a copy of the GNU General Public License | ||
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
%%% @copyright 2010-2023 Manolis Papadakis, Eirini Arvaniti, and Kostis Sagonas | ||
%%% @copyright 2010-2024 Manolis Papadakis, Eirini Arvaniti, and Kostis Sagonas | ||
%%% @version {@version} | ||
%%% @author Manolis Papadakis | ||
%%% @doc This module contains PropEr's Unit tests. You need the EUnit | ||
|
@@ -1054,7 +1054,7 @@ false_props_test_() -> | |
?_fails(?FORALL(_, float(0.0,0.0), false)), | ||
?_fails(fails(?FORALL(_, integer(), false))), | ||
?_failsWith([16], ?FORALL(X, ?LET(Y,integer(),Y*Y), X < 15)), | ||
?_failsWith([0.0], | ||
?_failsWith([+0.0], | ||
?FORALL(_, ?LETSHRINK([A,B], [float(),atom()], {A,B}), false)), | ||
?_failsWith([], conjunction([{some,true},{thing,false}])), | ||
?_failsWith([{2,1},[{group,[[{sub_group,[1]}]]},{stupid,[1]}]], | ||
|