X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dbus%2Fdbus-test-main.c;h=f6ef7821d55999e6469b3c0fd74761b419091950;hb=53966707ae206dc42e3e2746d1a731c69c35a610;hp=50a1c760df15e077a349729774862ecc33a8c49d;hpb=c5020ac870c5990a36c3576453cc23431213e8bf;p=platform%2Fupstream%2Fdbus.git diff --git a/dbus/dbus-test-main.c b/dbus/dbus-test-main.c index 50a1c76..f6ef782 100644 --- a/dbus/dbus-test-main.c +++ b/dbus/dbus-test-main.c @@ -1,9 +1,9 @@ -/* -*- mode: C; c-file-style: "gnu" -*- */ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* dbus-test.c Program to run all tests * * Copyright (C) 2002 Red Hat Inc. * - * Licensed under the Academic Free License version 1.2 + * Licensed under the Academic Free License version 2.1 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,32 +17,42 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ +#include #include "dbus-types.h" #include "dbus-test.h" #include #include +#if HAVE_LOCALE_H #include +#endif int main (int argc, char **argv) { const char *test_data_dir; + const char *specific_test; +#if HAVE_SETLOCALE setlocale(LC_ALL, ""); - +#endif if (argc > 1) test_data_dir = argv[1]; else test_data_dir = NULL; + + if (argc > 2) + specific_test = argv[2]; + else + specific_test = NULL; - dbus_internal_do_not_use_run_tests (test_data_dir); + dbus_internal_do_not_use_run_tests (test_data_dir, specific_test); return 0; }