diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-10-01 08:00:39 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-10-01 08:00:39 +0200 |
commit | 137d5863e2730297061149431cf7dc0b0c5f29dd (patch) | |
tree | 593a218439bc597373434b5e259184a064b50fe2 /tests/tests.cpp | |
parent | 1ec9453b7e3055a5972351ef5c5fa1041b8f4e4f (diff) | |
download | weechat-137d5863e2730297061149431cf7dc0b0c5f29dd.zip |
tests: run command "/debug libs" in tests instead of Travis CI command
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r-- | tests/tests.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp index 76ecb2132..a997e3821 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -173,10 +173,6 @@ main (int argc, char *argv[]) ptr_core_buffer = gui_buffer_search_main (); - /* display WeeChat version and directories */ - input_data (ptr_core_buffer, "/command core version"); - input_data (ptr_core_buffer, "/debug dirs"); - /* auto-load plugins from WEECHAT_EXTRA_LIBDIR if no plugin were loaded */ if (!weechat_plugins) { @@ -187,6 +183,11 @@ main (int argc, char *argv[]) plugin_auto_load (0, NULL, 0, 1, 0); } + /* display WeeChat version and directories */ + input_data (ptr_core_buffer, "/command core version"); + input_data (ptr_core_buffer, "/debug dirs"); + input_data (ptr_core_buffer, "/debug libs"); + /* run all tests */ printf ("\n"); printf (">>>>>>>>>> TESTS >>>>>>>>>>\n"); |