Browse Source

Fixed platform_define pattern matching

pull/461/head
Howard Stark 7 years ago
parent
commit
701cd90c39
No known key found for this signature in database GPG Key ID: 9FA4E350B33067F3
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      rebar.config

+ 3
- 3
rebar.config View File

@ -21,9 +21,9 @@
{erl_opts, [
{lager_extra_sinks, ['__lager_test_sink']},
{platform_define, "(19|20|21)", test_statem},
{platform_define, "(18)", 'FUNCTION_NAME', unavailable},
{platform_define, "(18)", 'FUNCTION_ARITY', 0},
{platform_define, "^(19|20|21)", test_statem},
{platform_define, "^18", 'FUNCTION_NAME', unavailable},
{platform_define, "^18", 'FUNCTION_ARITY', 0},
debug_info,
report,
verbose,

Loading…
Cancel
Save