X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Flib%2Ftest_plugin.c;h=603eb29bc79ed6b79baa416ee43d48ec62f8538b;hb=c55a9f585da53ea54ac458155fac3cdec1779d47;hp=a256b7cbcb958ed07c566044d7f22949a3823454;hpb=69b772a4f25fc4512abc877662a8c19e404b452c;p=babeltrace.git diff --git a/tests/lib/test_plugin.c b/tests/lib/test_plugin.c index a256b7cb..603eb29b 100644 --- a/tests/lib/test_plugin.c +++ b/tests/lib/test_plugin.c @@ -70,7 +70,7 @@ static void test_invalid(const char *plugin_dir) ok(!bt_plugin_create_all_from_file(NULL), "bt_plugin_create_all_from_file() handles NULL correctly"); - ok(!bt_plugin_create_all_from_dir(NULL, false), + ok(!bt_plugin_create_all_from_dir(NULL, BT_FALSE), "bt_plugin_create_all_from_dir() handles NULL correctly"); ok(!bt_plugin_get_name(NULL), "bt_plugin_get_name() handles NULL correctly"); @@ -245,11 +245,11 @@ static void test_create_all_from_dir(const char *plugin_dir) diag("create from all test below"); - plugin_set = bt_plugin_create_all_from_dir(NON_EXISTING_PATH, false); + plugin_set = bt_plugin_create_all_from_dir(NON_EXISTING_PATH, BT_FALSE); ok(!plugin_set, "bt_plugin_create_all_from_dir() fails with an invalid path"); - plugin_set = bt_plugin_create_all_from_dir(plugin_dir, false); + plugin_set = bt_plugin_create_all_from_dir(plugin_dir, BT_FALSE); ok(plugin_set, "bt_plugin_create_all_from_dir() succeeds with a valid path"); /* 2 or 4, if `.la` files are considered or not */