aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_input.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-05-20test: enable binary mode on stdin/stdoutMax Kellermann1-0/+1
Declaring the global variable _CRT_fmode is a documented hack. What an ugly platform!
2010-01-01input_stream: return allocated input_stream objectsMax Kellermann1-4/+5
Major API redesign: don't let the caller allocate the input_stream object. Let each input plugin allocate its own (derived/extended) input_stream pointer. The "data" attribute can now be removed, and all input plugins simply cast the input_stream pointer to their own structure (with an "struct input_stream base" as the first attribute).
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-15input_stream: return errors with GErrorMax Kellermann1-6/+21
2009-12-15test/run_input: deinitialize everything after open() errorMax Kellermann1-40/+50
This enables valgrind debugging after an error occurred.
2009-12-15test/run_input: initialize archive pluginsMax Kellermann1-0/+15
Enable archive plugin debugging.
2009-12-14input_plugin: method init() returns errors with GErrorMax Kellermann1-1/+7
Not used by any plugin currently, but this eliminates the g_error() call in input_plugin_config(), so it's worth it.
2009-12-14input_stream: moved input_stream_global_init() to input_init.cMax Kellermann1-0/+1
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-04-13test: added run_input test programMax Kellermann1-0/+114