You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
/*
|
|
* Copyright 2002-2019 Intel Corporation.
|
|
*
|
|
* This software is provided to you as Sample Source Code as defined in the accompanying
|
|
* End User License Agreement for the Intel(R) Software Development Products ("Agreement")
|
|
* section 1.L.
|
|
*
|
|
* This software and the related documents are provided as is, with no express or implied
|
|
* warranties, other than those that are expressly stated in the License.
|
|
*/
|
|
|
|
#include "pin.H"
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
|
|
// Print out help message.
|
|
INT32 Usage()
|
|
{
|
|
std::cerr << "This tool searches a specific variable in argv for dumpargv.test" << std::endl;
|
|
std::cerr << KNOB_BASE::StringKnobSummary() << std::endl;
|
|
return -1;
|
|
}
|
|
|
|
// Tool for testing proper parsing of argv
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Initialize symbol processing
|
|
PIN_InitSymbols();
|
|
|
|
// Initialize PIN library. Print help message if -h(elp) is specified
|
|
// in the command line or the command line is invalid
|
|
if (PIN_Init(argc, argv))
|
|
{
|
|
return Usage();
|
|
}
|
|
|
|
printf("argc = %u\n", argc);
|
|
for (int i = 0; i < argc && argv[i]; i++)
|
|
{
|
|
printf("argv[%u] = '%s'\n", i, argv[i]);
|
|
fflush(stdout);
|
|
if (!strcmp(argv[i], "\\\\isamba\\nfs\\site\\ptl\\bistro\\log"))
|
|
{
|
|
PIN_ExitProcess(0);
|
|
}
|
|
}
|
|
PIN_ExitProcess(1);
|
|
}
|