guess what caller meant when they give us bad path name

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26197 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-03-05 09:32:49 +00:00
parent f5f2219ee7
commit 4b6bd491a1
3 changed files with 85 additions and 9 deletions

View file

@ -1,8 +1,48 @@
#include <Foundation/Foundation.h>
int main ()
{
static unsigned char bytes[9] = {'\355', '\264', '\200', '\346', '\224', '\200', '\347', '\214', '\200'};
NSString *s = [[NSString alloc] initWithBytes: bytes length: 9 encoding: NSUTF8StringEncoding];
NSLog(@"s %@", s);
return 0;
}
/* Demonstration of windows NSTask launching bug */
#include "Foundation/Foundation.h"
int main()
{
CREATE_AUTORELEASE_POOL(arp);
NSTask *task;
NSProcessInfo *info;
NSDictionary *env;
NSString *path;
info = [NSProcessInfo processInfo];
env = [info environment];
#if defined(__MINGW32__)
path = @"C:\\WINDOWS\\system32\\net.exe";
// path = @"E:\\WINNT\\system32\\net.exe";
#else
path = @"/bin/ls";
#endif
printf("Determined command to run as '%s'\n",[path lossyCString]);
task = [NSTask launchedTaskWithLaunchPath: path
arguments: [NSArray array]];
[task waitUntilExit];
printf("First task has completed\n");
#if defined(__MINGW32__)
path = @"C:\\WINDOWS\\system32\\mem.exe";
// path = @"E:\\WINNT\\system32\\mem.exe";
#else
path = @"/bin/ls";
#endif
printf("Determined command to run as '%s'\n",[path lossyCString]);
task = [NSTask launchedTaskWithLaunchPath: path
arguments: [NSArray array]];
[task waitUntilExit];
printf("Second task has completed\n");
DESTROY(arp);
return 0;
}