Update contrib.
2 * LIBOIL - Library of Optimized Inner Loops
3 * Copyright (c) 2004 David A. Schleef <ds@schleef.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
30 #include <liboil/liboilprototype.h>
31 #include <liboil/liboil.h>
36 #include <liboil/globals.h>
38 #define LOG_FILE "c:\\logs\\testsuite_proto3_log1.txt"
39 #include "std_log_result.h"
40 #define LOG_FILENAME_LINE __FILE__, __LINE__
42 void create_xml(int result)
47 testResultXml("testsuite_proto3");
51 void print_param (OilParameter *param);
54 * <isd>[s][0-9*][_[<0-9*,nm[p0-9*]>x]<0-9*,nm[p0-9*]>] */
56 char *good_params[] = {
79 char *bad_params[] = {
84 int main (int argc, char *argv[])
92 std_log(LOG_FILENAME_LINE, "Test Started testsuite_proto3");
94 for(i=0;good_params[i];i++){
95 ret = oil_param_from_string (¶m, good_params[i]);
97 printf("***ERROR***\n");
98 std_log(LOG_FILENAME_LINE, "***ERROR***");
101 print_param (¶m);
104 for(i=0;bad_params[i];i++){
105 ret = oil_param_from_string (¶m, bad_params[i]);
107 printf("***ERROR***\n");
108 std_log(LOG_FILENAME_LINE, "***ERROR***");
112 std_log(LOG_FILENAME_LINE, "Test Successful");
117 void print_param (OilParameter *param)
119 if (param->is_stride)
121 printf (" %cs%d\n", param->direction, param->index);
125 printf (" %c%d_", param->direction, param->index);
126 if (param->prestride_var > 0)
128 printf("%c", (param->prestride_var==1) ? 'n' : 'm');
129 if (param->prestride_length)
131 printf("p%d", param->prestride_length);
136 printf("%d", param->prestride_length);
139 if (param->poststride_var > 0)
141 printf("%c", (param->poststride_var==1) ? 'n' : 'm');
142 if (param->poststride_length)
144 printf("p%d", param->poststride_length);
149 printf("%d", param->poststride_length);