Skip to content

Commit

Permalink
rebar3 unicode bug report
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jan 14, 2020
1 parent a7ba15b commit c6d9bfe
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 0 deletions.
19 changes: 19 additions & 0 deletions bug-reports/unicode_print_error/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.rebar3
_*
.eunit
*.o
*.beam
*.plt
*.swp
*.swo
.erlang.cookie
ebin
log
erl_crash.dump
.rebar
logs
_build
.idea
*.iml
rebar3.crashdump
*~
1 change: 1 addition & 0 deletions bug-reports/unicode_print_error/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Run `rebar3 eunit` to see `out.txt` being printed incorrectly.
5 changes: 5 additions & 0 deletions bug-reports/unicode_print_error/out.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
┌── /src/tetromino.gleam:2:10 ───
2 │ [1] == [1.0]
│ ^^^^^
6 changes: 6 additions & 0 deletions bug-reports/unicode_print_error/rebar.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{erl_opts, [debug_info]}.
{deps, []}.

{pre_hooks, [
{eunit, "cat out.txt"}
]}.
14 changes: 14 additions & 0 deletions bug-reports/unicode_print_error/src/unicode_print_error.app.src
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{application, unicode_print_error,
[{description, "An OTP library"},
{vsn, "0.1.0"},
{registered, []},
{applications,
[kernel,
stdlib
]},
{env,[]},
{modules, []},

{licenses, ["Apache 2.0"]},
{links, []}
]}.
3 changes: 3 additions & 0 deletions bug-reports/unicode_print_error/src/unicode_print_error.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-module(unicode_print_error).

-export([]).

0 comments on commit c6d9bfe

Please sign in to comment.