diff options
author | Loïc Hoguin <[email protected]> | 2023-04-03 10:27:29 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-04-03 10:27:29 +0200 |
commit | a1d7135f1349735569016adcb3e185be58c44042 (patch) | |
tree | d5eb14dc9191153b637073d7136470f6ad83613f | |
parent | 6711b6c4e3b0d5a30a3d0efcd8da6cc4d01abc9b (diff) | |
download | erlang.mk-a1d7135f1349735569016adcb3e185be58c44042.tar.gz erlang.mk-a1d7135f1349735569016adcb3e185be58c44042.tar.bz2 erlang.mk-a1d7135f1349735569016adcb3e185be58c44042.zip |
Fix core-app-yrl-header test for OTP-26
-rw-r--r-- | test/core_app.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core_app.mk b/test/core_app.mk index 643c58c..4fce9e8 100644 --- a/test/core_app.mk +++ b/test/core_app.mk @@ -1699,6 +1699,8 @@ core-app-yrl-header: init $t echo "-export([forty_two/0])." > $(APP)/include/yecc_header.hrl # A bunch of gobbldygook we don't actually care about, they just # need to exist so we don't get errors. + $t echo "-export([yeccpars1/5])." >> $(APP)/include/yecc_header.hrl + $t echo "-export([yeccerror/1])." >> $(APP)/include/yecc_header.hrl $t echo "yeccpars1(_,_,_,_,_) -> throw(not_implemented)." >> $(APP)/include/yecc_header.hrl $t echo "yeccerror(_) -> throw(not_implemented)." >> $(APP)/include/yecc_header.hrl # Required bits done, now part we'll actually test for. |