X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dbus%2Fdbus-test-main.c;h=f6ef7821d55999e6469b3c0fd74761b419091950;hb=3ccb027c907f9ee2890028e83b60296204bbf478;hp=0c607ec8bbee8a809859228f4152a2dadd7d7c2a;hpb=c3af5ccdbc22e8990d04ec2f89ad1f2e053655e9;p=platform%2Fupstream%2Fdbus.git diff --git a/dbus/dbus-test-main.c b/dbus/dbus-test-main.c index 0c607ec..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,28 +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; }