This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
SisMaker
/
ibrowse
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
30
Wiki
Activity
Browse Source
Merge
a3e64d54f7
into
67d3bcbf18
pull/82/merge
Joseph Wayne Norton
12 years ago
parent
67d3bcbf18
a3e64d54f7
commit
877cf95384
5 changed files
with
5 additions
and
24 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-2
.gitignore
+3
-2
Makefile
+2
-1
rebar.config
+0
-19
test/Makefile
+0
-0
test/ibrowse_test.erl
+ 0
- 2
.gitignore
View File
@ -1,6 +1,4 @@
ebin/
ebin/
*~
*~
.eunit/
.eunit/
test/
*beam
*beam
+ 3
- 2
Makefile
View File
@ -12,9 +12,10 @@ install: all
test
:
all
test
:
all
./rebar eunit
./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 verify_chunked_streaming
\
-s ibrowse_test test_chunked_streaming_once
\
-s ibrowse_test test_chunked_streaming_once
\
-s erlang halt
-s erlang halt
xref
:
all
./rebar xref
+ 2
- 1
rebar.config
View File
@ -1,2 +1,3 @@
{erl_opts, [debug_info, warn_unused_vars, nowarn_shadow_vars, warn_unused_import]}.
{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]}.
+ 0
- 19
test/Makefile
View File
@ -1,19 +0,0 @@
ERL_FILES
=
ibrowse_test_server.erl
INCLUDE_DIRS
=
-I./
ERLC
?=
erlc
ERLC_EMULATOR
?=
erl -boot start_clean
COMPILER_OPTIONS
=
-W +warn_unused_vars +nowarn_shadow_vars +warn_unused_import
.SUFFIXES
:
.
erl
.
beam
$(
SUFFIXES
)
all
:
$(
ERL_FILES
:%.
erl
=%.
beam
)
%.beam
:
%.
erl
${
ERLC
}
$(
COMPILER_OPTIONS
)
$(
INCLUDE_DIRS
)
-o ./ $<
clean
:
rm -f *.beam
src/ibrowse_test.erl → test/ibrowse_test.erl
View File
Write
Preview
Loading…
Cancel
Save