浏览代码

Add xref Makefile target

Move src/ibrowse_test.erl file to the test directory.
pull/82/head
Joseph Wayne Norton 12 年前
父节点
当前提交
9612a2fe63
共有 3 个文件被更改,包括 5 次插入2 次删除
  1. +3
    -1
      Makefile
  2. +2
    -1
      rebar.config
  3. +0
    -0
      test/ibrowse_test.erl

+ 3
- 1
Makefile 查看文件

@ -13,8 +13,10 @@ install: all
test: all
./rebar eunit
(cd test; make)
erl -noshell -pa ebin -pa test -s ibrowse -s ibrowse_test unit_tests \
erl -noshell -pa .eunit -pa test -s ibrowse -s ibrowse_test unit_tests \
-s ibrowse_test verify_chunked_streaming \
-s ibrowse_test test_chunked_streaming_once \
-s erlang halt
xref: all
./rebar xref

+ 2
- 1
rebar.config 查看文件

@ -1,2 +1,3 @@
{erl_opts, [debug_info, warn_unused_vars, nowarn_shadow_vars, warn_unused_import]}.
{eunit_opts, [verbose]}.
{xref_checks, [undefined_function_calls, deprecated_function_calls]}.
{eunit_opts, [verbose]}.

src/ibrowse_test.erl → test/ibrowse_test.erl 查看文件


正在加载...
取消
保存