fritzkink
2023-12-26 c3a1193deaa3a46b90c82aa59a5acf9cff2942b4
commit | author | age
c3a119 1 gdbserver_tests test does not work at all
F 2 simply waits for eternity
3
4 --- valgrind-3.22.0/Makefile.in    2023-12-26 18:16:46.161022244 +0100
5 +++ valgrind-3.22.0/Makefile.in.new    2023-12-26 19:05:09.563683141 +0100
6 @@ -1435,18 +1435,18 @@
7  
8  regtest: check
9      $(top_srcdir)/gdbserver_tests/make_local_links $(GDB)
10 -    if @PERL@ tests/vg_regtest gdbserver_tests $(TOOLS) $(EXP_TOOLS) ; then \
11 -       tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS); \
12 +    if @PERL@ tests/vg_regtest $(TOOLS) $(EXP_TOOLS) ; then \
13 +       tests/post_regtest_checks $(abs_top_srcdir) $(TOOLS) $(EXP_TOOLS); \
14      else \
15         tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS); \
16         false; \
17      fi
18  post-regtest-checks:
19 -    tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS)
20 +    tests/post_regtest_checks $(abs_top_srcdir) $(TOOLS) $(EXP_TOOLS)
21  nonexp-regtest: check
22      @PERL@ tests/vg_regtest $(TOOLS)
23  exp-regtest: check
24 -    @PERL@ tests/vg_regtest gdbserver_tests $(EXP_TOOLS)
25 +    @PERL@ tests/vg_regtest $(EXP_TOOLS)
26  # Nb: gdbserver_tests are put in exp-regtest rather than nonexp-regtest
27  # because they are tested with various valgrind tools, so might be using
28  # an experimental tool.
29 --- valgrind-3.22.0/Makefile.am    2023-10-31 18:25:52.000000000 +0100
30 +++ valgrind-3.22.0/Makefile.am.new    2023-12-26 19:06:33.986624317 +0100
31 @@ -76,18 +76,18 @@
32  ## Ensure make exits with error if PERL fails or post_regtest_checks fails.
33  regtest: check
34      $(top_srcdir)/gdbserver_tests/make_local_links $(GDB)
35 -    if @PERL@ tests/vg_regtest gdbserver_tests $(TOOLS) $(EXP_TOOLS) ; then \
36 -       tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS); \
37 +    if @PERL@ tests/vg_regtest $(TOOLS) $(EXP_TOOLS) ; then \
38 +       tests/post_regtest_checks $(abs_top_srcdir) $(TOOLS) $(EXP_TOOLS); \
39      else \
40         tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS); \
41         false; \
42      fi
43  post-regtest-checks:
44 -    tests/post_regtest_checks $(abs_top_srcdir) gdbserver_tests $(TOOLS) $(EXP_TOOLS)
45 +    tests/post_regtest_checks $(abs_top_srcdir) $(TOOLS) $(EXP_TOOLS)
46  nonexp-regtest: check
47      @PERL@ tests/vg_regtest $(TOOLS)
48  exp-regtest: check
49 -    @PERL@ tests/vg_regtest gdbserver_tests $(EXP_TOOLS)
50 +    @PERL@ tests/vg_regtest $(EXP_TOOLS)
51  # Nb: gdbserver_tests are put in exp-regtest rather than nonexp-regtest
52  # because they are tested with various valgrind tools, so might be using
53  # an experimental tool.