• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..31-May-2021-

beam_validator_SUITE_data/H31-May-2021-2,0481,734

compilation_SUITE_data/H31-May-2021-3,5142,458

compile_SUITE_data/H03-May-2022-1,056631

core_SUITE_data/H31-May-2021-1,3581,331

core_fold_SUITE_data/H31-May-2021-3128

error_SUITE_data/H31-May-2021-318

guard_SUITE_data/H31-May-2021-3125

inline_SUITE_data/H31-May-2021-5,7404,828

receive_SUITE_data/ref_opt/H31-May-2021-452368

record_SUITE_data/H31-May-2021-202159

MakefileH A D31-May-20214.3 KiB194147

andor_SUITE.erlH A D31-May-202112.6 KiB488379

apply_SUITE.erlH A D31-May-20213.7 KiB12878

beam_block_SUITE.erlH A D31-May-20218.5 KiB313172

beam_disasm_SUITE.erlH A D31-May-20211.8 KiB6634

beam_except_SUITE.erlH A D31-May-20212.6 KiB9960

beam_jump_SUITE.erlH A D31-May-20212.3 KiB9048

beam_reorder_SUITE.erlH A D31-May-20211.7 KiB8247

beam_type_SUITE.erlH A D31-May-20217.9 KiB330245

beam_utils_SUITE.erlH A D31-May-202114.4 KiB595475

beam_validator_SUITE.erlH A D31-May-202118.3 KiB640528

bif_SUITE.erlH A D31-May-20212.9 KiB12382

bs_bincomp_SUITE.erlH A D31-May-202111.1 KiB371292

bs_bit_binaries_SUITE.erlH A D31-May-20214.8 KiB179123

bs_construct_SUITE.erlH A D31-May-202115.5 KiB579442

bs_match_SUITE.erlH A D31-May-202151.1 KiB1,7711,375

bs_utf_SUITE.erlH A D31-May-202112.2 KiB399265

compilation_SUITE.erlH A D31-May-202111.3 KiB441322

compile_SUITE.erlH A D31-May-202151.8 KiB1,5871,210

compiler.coverH A D31-May-202194 63

compiler.specH A D31-May-202151 32

core_SUITE.erlH A D31-May-20213.1 KiB11275

core_alias_SUITE.erlH A D31-May-20216.3 KiB196146

core_fold_SUITE.erlH A D31-May-202116.2 KiB623461

error_SUITE.erlH A D31-May-202110.4 KiB383310

float_SUITE.erlH A D31-May-20214.7 KiB181124

fun_SUITE.erlH A D31-May-20216.3 KiB259189

guard_SUITE.erlH A D31-May-202163.2 KiB2,2491,738

inline_SUITE.erlH A D31-May-202110.6 KiB358247

lc_SUITE.erlH A D31-May-20218.2 KiB285208

lfe-core.patchH A D31-May-20212.7 KiB9894

lfe-source.patchH A D31-May-20213.9 KiB11899

lfe.readmeH A D31-May-2021772 3220

lfe_andor_SUITE.coreH A D31-May-202146.3 KiB2,0152,014

lfe_guard_SUITE.coreH A D31-May-202175.9 KiB3,4393,438

map_SUITE.erlH A D31-May-202191.9 KiB2,2261,691

match_SUITE.erlH A D31-May-202117.8 KiB759570

misc_SUITE.erlH A D31-May-202112.1 KiB403278

overridden_bif_SUITE.erlH A D31-May-20212.4 KiB10257

receive_SUITE.erlH A D31-May-20218.8 KiB382278

record_SUITE.erlH A D31-May-202118.3 KiB661482

regressions_SUITE.erlH A D31-May-20213.5 KiB12282

test_lib.erlH A D31-May-20214.8 KiB16198

trycatch_SUITE.erlH A D31-May-202131.5 KiB1,2921,109

warnings_SUITE.erlH A D31-May-202128.6 KiB1,022853

z_SUITE.erlH A D31-May-20211.4 KiB6333

lfe.readme

1Creating the LFE-derived test suites
2====================================
3
4Here is how to create `lfe_andor_SUITE.core` and `lfe_guard_SUITE.core`
5files.
6
7First clone and build LFE.
8
9    git clone https://github.com/rvirding/lfe.git
10    cd lfe
11    git checkout v1.2.0
12    MAKEFLAGS='' make compile
13    export PATH=$(pwd)/bin:$PATH
14
15Apply the source patch to rename and fix up the LFE source code:
16
17    cd test
18    git apply $ERL_TOP/lib/compiler/test/lfe-source.patch
19    git reset --hard HEAD
20
21Compile the modules to Core Erlang:
22
23    lfec +to-core0 lfe*.lfe
24
25Apply the core patch to correct some invalid variable names:
26
27    git apply $ERL_TOP/lib/compiler/test/lfe-core.patch
28
29Copy the patched .core file to the test suite:
30
31    cp lfe*.core $ERL_TOP/lib/compiler/test
32