Skip to content

Commit

Permalink
Fix random errors in 173-os-daemon-cfg-register.t
Browse files Browse the repository at this point in the history
The daemon script this test used previously was an escript which
would occasionally cause errors if the Erlang VM took too long
to boot up.

This fixes the issue by replacing the escript with a trivial C
program.



git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1096098 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
davisp committed Apr 23, 2011
1 parent 70477d3 commit 876952c
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 41 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ src/ejson/.libs/
src/ejson/priv
src/mochiweb/mochiweb.app
test/local.ini
test/etap/.deps/
test/etap/run
test/etap/test_cfg_register
test/etap/test_util.erl
test/javascript/run
share/server/main.js
Expand Down
3 changes: 3 additions & 0 deletions license.skip
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@
^test/bench/Makefile
^test/bench/Makefile.in
^test/etap/.*beam
^test/etap/.*\.o
^test/etap/.deps/*
^test/etap/test_cfg_register
^test/etap/Makefile
^test/etap/Makefile.in
^test/etap/temp.*
Expand Down
11 changes: 6 additions & 5 deletions src/couchdb/couch_os_daemons.erl
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ handle_info({'EXIT', Port, Reason}, Table) ->
?LOG_INFO("Port ~p exited after stopping: ~p~n", [Port, Reason]);
[#daemon{status=stopping}] ->
true = ets:delete(Table, Port);
[#daemon{name=Name, status=restarting, errors=Errs}=D] ->
[#daemon{name=Name, status=restarting}=D] ->
?LOG_INFO("Daemon ~P restarting after config change.", [Name]),
true = ets:delete(Table, Port),
{ok, Port2} = start_port(D#daemon.cmd),
true = ets:insert(Table, D#daemon{
port=Port2, status=running, kill=undefined, errors=Errs, buf=[]
port=Port2, status=running, kill=undefined, buf=[]
});
[#daemon{name=Name, status=halted}] ->
?LOG_ERROR("Halted daemon process: ~p", [Name]);
Expand All @@ -106,12 +106,12 @@ handle_info({Port, {exit_status, Status}}, Table) ->
[] ->
?LOG_ERROR("Unknown port ~p exiting ~p", [Port, Status]),
{stop, {error, unknown_port_died, Status}, Table};
[#daemon{name=Name, status=restarting, errors=Errors}=D] ->
[#daemon{name=Name, status=restarting}=D] ->
?LOG_INFO("Daemon ~P restarting after config change.", [Name]),
true = ets:delete(Table, Port),
{ok, Port2} = start_port(D#daemon.cmd),
true = ets:insert(Table, D#daemon{
port=Port2, kill=undefined, errors=Errors, buf=[]
port=Port2, status=running, kill=undefined, buf=[]
}),
{noreply, Table};
[#daemon{status=stopping}=D] ->
Expand Down Expand Up @@ -140,7 +140,8 @@ handle_info({Port, {exit_status, Status}}, Table) ->
true = ets:delete(Table, Port),
{ok, Port2} = start_port(D#daemon.cmd),
true = ets:insert(Table, D#daemon{
port=Port2, kill=undefined, errors=Errors, buf=[]
port=Port2, status=running, kill=undefined,
errors=Errors, buf=[]
}),
{noreply, Table}
end;
Expand Down
34 changes: 0 additions & 34 deletions test/etap/173-os-daemon-cfg-register.es

This file was deleted.

2 changes: 1 addition & 1 deletion test/etap/173-os-daemon-cfg-register.t
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ daemon_name() ->
"wheee".

daemon_cmd() ->
test_util:source_file("test/etap/173-os-daemon-cfg-register.es").
test_util:build_file("test/etap/test_cfg_register").

main(_) ->
test_util:init_code_path(),
Expand Down
5 changes: 4 additions & 1 deletion test/etap/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
noinst_SCRIPTS = run
noinst_DATA = test_util.beam test_web.beam

noinst_PROGRAMS = test_cfg_register
test_cfg_register_SOURCES = test_cfg_register.c
test_cfg_register_CFLAGS = -D_BSD_SOURCE

%.beam: %.erl
$(ERLC) $<

Expand Down Expand Up @@ -74,7 +78,6 @@ EXTRA_DIST = \
172-os-daemon-errors.3.sh \
172-os-daemon-errors.4.sh \
172-os-daemon-errors.t \
173-os-daemon-cfg-register.es \
173-os-daemon-cfg-register.t \
180-http-proxy.ini \
180-http-proxy.t \
Expand Down
30 changes: 30 additions & 0 deletions test/etap/test_cfg_register.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.

#include <stdio.h>

int
main(int argc, const char * argv[])
{
char c = '\0';
size_t num = 1;

fprintf(stdout, "[\"register\", \"s1\"]\n");
fprintf(stdout, "[\"register\", \"s2\", \"k\"]\n");
fflush(stdout);

while(c != '\n' && num > 0) {
num = fread(&c, 1, 1, stdin);
}

exit(0);
}

0 comments on commit 876952c

Please sign in to comment.