comparison test/suite3/README.txt @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3e629dc19168
1
2
3 dyncall stress test suite: testing standard C calls
4 ===================================================
5 Copyright (c) 2007-2009 Daniel Adler <dadler@uni-goettingen.de>,
6 Tassilo Philipp <tphilipp@potion-studios.com>
7
8 Permission to use, copy, modify, and distribute this software for any
9 purpose with or without fee is hereby granted, provided that the above
10 copyright notice and this permission notice appear in all copies.
11
12 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20 requirements:
21 python (for preprocessing)
22
23 configuration:
24 edit "nargs" in mkcase.py and run
25
26 make distclean
27 make
28
29 on shell.
30
31
32 usage:
33
34 suite - run full range
35 suite <id> - run test id <id>
36 suite <from> <to> - run test id <from> to id <to> (inclusive).
37
38 see test details in case.h
39
40
41 description:
42
43 the test invokes 'void'-functions that effectively overwrite global
44 variables in a structured way.
45
46 functions are identified by an id (a number starting at 0).
47
48 the implementation of each function does
49
50 sets the gID to its id (which is compiled in)
51
52 sets all arguments into type-specific value vectors at the given position
53
54 This version is a modification to "test/suite" using only 4 basic types:
55 integer, float, double and long long.
56