xpcom/tests/TestArguments.cpp

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #include <string.h>
     3 int main(int argc, char* argv[]) {
     4   if (argc != 9)
     5       return -1;
     7   if (strcmp("mozilla", argv[1]) != 0)
     8       return 1;
     9   if (strcmp("firefox", argv[2]) != 0)
    10       return 2;
    11   if (strcmp("thunderbird", argv[3]) != 0)
    12       return 3;
    13   if (strcmp("seamonkey", argv[4]) != 0)
    14       return 4;
    15   if (strcmp("foo", argv[5]) != 0)
    16       return 5;
    17   if (strcmp("bar", argv[6]) != 0)
    18       return 6;
    19   if (strcmp("argument with spaces", argv[7]) != 0)
    20       return 7;
    21   if (strcmp("\"argument with quotes\"", argv[8]) != 0)
    22       return 8;
    24   return 0;
    25 } 

mercurial