Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 1 | /* |
Lucas De Marchi | e6b0e49 | 2013-01-16 11:27:21 -0200 | [diff] [blame] | 2 | * Copyright (C) 2012-2013 ProFUSION embedded systems |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 3 | * |
Lucas De Marchi | e1b1ab2 | 2012-07-10 09:42:24 -0300 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Lesser General Public |
| 6 | * License as published by the Free Software Foundation; either |
| 7 | * version 2.1 of the License, or (at your option) any later version. |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Lucas De Marchi | e1b1ab2 | 2012-07-10 09:42:24 -0300 | [diff] [blame] | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Lesser General Public License for more details. |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 13 | * |
Lucas De Marchi | e1b1ab2 | 2012-07-10 09:42:24 -0300 | [diff] [blame] | 14 | * You should have received a copy of the GNU Lesser General Public |
Lucas De Marchi | dea2dfe | 2014-12-25 23:32:03 -0200 | [diff] [blame^] | 15 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 16 | */ |
| 17 | |
Lucas De Marchi | c2e4286 | 2014-10-03 01:41:42 -0300 | [diff] [blame] | 18 | #include <errno.h> |
| 19 | #include <inttypes.h> |
| 20 | #include <stddef.h> |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 23 | #include <string.h> |
Lucas De Marchi | c2e4286 | 2014-10-03 01:41:42 -0300 | [diff] [blame] | 24 | #include <unistd.h> |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 25 | |
| 26 | #include "testsuite.h" |
| 27 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 28 | static noreturn int modprobe_show_depends(const struct test *t) |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 29 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 30 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 31 | const char *const args[] = { |
| 32 | progname, |
| 33 | "--show-depends", "btusb", |
| 34 | NULL, |
| 35 | }; |
| 36 | |
| 37 | test_spawn_prog(progname, args); |
| 38 | exit(EXIT_FAILURE); |
| 39 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 40 | DEFINE_TEST(modprobe_show_depends, |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 41 | .description = "check if output for modprobe --show-depends is correct for loaded modules", |
| 42 | .config = { |
| 43 | [TC_UNAME_R] = "4.4.4", |
| 44 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/show-depends", |
| 45 | }, |
| 46 | .output = { |
John Spencer | bd4e734 | 2013-08-27 01:38:11 +0200 | [diff] [blame] | 47 | .out = TESTSUITE_ROOTFS "test-modprobe/show-depends/correct.txt", |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 48 | }); |
| 49 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 50 | static noreturn int modprobe_show_depends2(const struct test *t) |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 51 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 52 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 53 | const char *const args[] = { |
| 54 | progname, |
| 55 | "--show-depends", "psmouse", |
| 56 | NULL, |
| 57 | }; |
| 58 | |
| 59 | test_spawn_prog(progname, args); |
| 60 | exit(EXIT_FAILURE); |
| 61 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 62 | DEFINE_TEST(modprobe_show_depends2, |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 63 | .description = "check if output for modprobe --show-depends is correct", |
| 64 | .config = { |
| 65 | [TC_UNAME_R] = "4.4.4", |
| 66 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/show-depends", |
| 67 | }, |
| 68 | .output = { |
John Spencer | bd4e734 | 2013-08-27 01:38:11 +0200 | [diff] [blame] | 69 | .out = TESTSUITE_ROOTFS "test-modprobe/show-depends/correct-psmouse.txt", |
Lucas De Marchi | 976ea8c | 2012-02-08 01:40:00 -0200 | [diff] [blame] | 70 | }); |
Lucas De Marchi | a7f5300 | 2012-02-16 21:04:24 -0200 | [diff] [blame] | 71 | |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 72 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 73 | static noreturn int modprobe_show_alias_to_none(const struct test *t) |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 74 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 75 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 76 | const char *const args[] = { |
| 77 | progname, |
| 78 | "--show-depends", "--ignore-install", "--quiet", "psmouse", |
| 79 | NULL, |
| 80 | }; |
| 81 | |
| 82 | test_spawn_prog(progname, args); |
| 83 | exit(EXIT_FAILURE); |
| 84 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 85 | DEFINE_TEST(modprobe_show_alias_to_none, |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 86 | .description = "check if modprobe --show-depends doesn't explode with an alias to nothing", |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 87 | .config = { |
| 88 | [TC_UNAME_R] = "4.4.4", |
| 89 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/alias-to-none", |
| 90 | }, |
| 91 | .output = { |
John Spencer | bd4e734 | 2013-08-27 01:38:11 +0200 | [diff] [blame] | 92 | .out = TESTSUITE_ROOTFS "test-modprobe/show-depends/correct-psmouse.txt", |
Michal Marek | 88ac408 | 2014-02-28 13:05:28 +0100 | [diff] [blame] | 93 | }, |
| 94 | .modules_loaded = "", |
| 95 | ); |
Lucas De Marchi | 5278396 | 2013-03-21 02:24:07 -0300 | [diff] [blame] | 96 | |
| 97 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 98 | static noreturn int modprobe_builtin(const struct test *t) |
Lucas De Marchi | a7f5300 | 2012-02-16 21:04:24 -0200 | [diff] [blame] | 99 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 100 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | a7f5300 | 2012-02-16 21:04:24 -0200 | [diff] [blame] | 101 | const char *const args[] = { |
| 102 | progname, |
| 103 | "unix", |
| 104 | NULL, |
| 105 | }; |
| 106 | |
| 107 | test_spawn_prog(progname, args); |
| 108 | exit(EXIT_FAILURE); |
| 109 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 110 | DEFINE_TEST(modprobe_builtin, |
Lucas De Marchi | a7f5300 | 2012-02-16 21:04:24 -0200 | [diff] [blame] | 111 | .description = "check if modprobe return 0 for builtin", |
Lucas De Marchi | a7f5300 | 2012-02-16 21:04:24 -0200 | [diff] [blame] | 112 | .config = { |
| 113 | [TC_UNAME_R] = "4.4.4", |
| 114 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/builtin", |
| 115 | }); |
| 116 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 117 | static noreturn int modprobe_softdep_loop(const struct test *t) |
Lucas De Marchi | a6976f8 | 2012-06-04 20:45:24 -0300 | [diff] [blame] | 118 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 119 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | a6976f8 | 2012-06-04 20:45:24 -0300 | [diff] [blame] | 120 | const char *const args[] = { |
| 121 | progname, |
| 122 | "bluetooth", |
| 123 | NULL, |
| 124 | }; |
| 125 | |
| 126 | test_spawn_prog(progname, args); |
| 127 | exit(EXIT_FAILURE); |
| 128 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 129 | DEFINE_TEST(modprobe_softdep_loop, |
Lucas De Marchi | a6976f8 | 2012-06-04 20:45:24 -0300 | [diff] [blame] | 130 | .description = "check if modprobe breaks softdep loop", |
| 131 | .config = { |
| 132 | [TC_UNAME_R] = "4.4.4", |
| 133 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/softdep-loop", |
| 134 | [TC_INIT_MODULE_RETCODES] = "", |
Michal Marek | 88ac408 | 2014-02-28 13:05:28 +0100 | [diff] [blame] | 135 | }, |
| 136 | .modules_loaded = "btusb,bluetooth", |
| 137 | ); |
Lucas De Marchi | a6976f8 | 2012-06-04 20:45:24 -0300 | [diff] [blame] | 138 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 139 | static noreturn int modprobe_install_cmd_loop(const struct test *t) |
Lucas De Marchi | 01d9ee6 | 2012-06-06 01:44:23 -0300 | [diff] [blame] | 140 | { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 141 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
Lucas De Marchi | 01d9ee6 | 2012-06-06 01:44:23 -0300 | [diff] [blame] | 142 | const char *const args[] = { |
| 143 | progname, |
| 144 | "snd-pcm", |
| 145 | NULL, |
| 146 | }; |
| 147 | |
| 148 | test_spawn_prog(progname, args); |
| 149 | exit(EXIT_FAILURE); |
| 150 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 151 | DEFINE_TEST(modprobe_install_cmd_loop, |
Lucas De Marchi | 9b01fd2 | 2012-06-06 10:49:04 -0300 | [diff] [blame] | 152 | .description = "check if modprobe breaks install-commands loop", |
Lucas De Marchi | 01d9ee6 | 2012-06-06 01:44:23 -0300 | [diff] [blame] | 153 | .config = { |
| 154 | [TC_UNAME_R] = "4.4.4", |
| 155 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/install-cmd-loop", |
| 156 | [TC_INIT_MODULE_RETCODES] = "", |
| 157 | }, |
| 158 | .env_vars = (const struct keyval[]) { |
Lucas De Marchi | b6adccd | 2013-07-04 16:01:55 -0300 | [diff] [blame] | 159 | { "MODPROBE", ABS_TOP_BUILDDIR "/tools/modprobe" }, |
Lucas De Marchi | 01d9ee6 | 2012-06-06 01:44:23 -0300 | [diff] [blame] | 160 | { } |
| 161 | }, |
Michal Marek | 88ac408 | 2014-02-28 13:05:28 +0100 | [diff] [blame] | 162 | .modules_loaded = "snd,snd-pcm", |
Lucas De Marchi | 01d9ee6 | 2012-06-06 01:44:23 -0300 | [diff] [blame] | 163 | ); |
| 164 | |
Lucas De Marchi | d96ca9c | 2013-12-17 19:10:16 -0200 | [diff] [blame] | 165 | static noreturn int modprobe_param_kcmdline(const struct test *t) |
Lucas De Marchi | ea225b9 | 2013-08-13 22:03:26 -0300 | [diff] [blame] | 166 | { |
| 167 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 168 | const char *const args[] = { |
| 169 | progname, |
| 170 | "--show-depends", "psmouse", |
| 171 | NULL, |
| 172 | }; |
| 173 | |
| 174 | test_spawn_prog(progname, args); |
| 175 | exit(EXIT_FAILURE); |
| 176 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 177 | DEFINE_TEST(modprobe_param_kcmdline, |
Lucas De Marchi | bad84a9 | 2014-03-06 01:14:12 -0300 | [diff] [blame] | 178 | .description = "check if params from kcmdline are passed in fact passed to (f)init_module call", |
Lucas De Marchi | ea225b9 | 2013-08-13 22:03:26 -0300 | [diff] [blame] | 179 | .config = { |
| 180 | [TC_UNAME_R] = "4.4.4", |
| 181 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline", |
| 182 | }, |
| 183 | .output = { |
John Spencer | bd4e734 | 2013-08-27 01:38:11 +0200 | [diff] [blame] | 184 | .out = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline/correct.txt", |
Michal Marek | 88ac408 | 2014-02-28 13:05:28 +0100 | [diff] [blame] | 185 | }, |
| 186 | .modules_loaded = "", |
| 187 | ); |
Lucas De Marchi | ea225b9 | 2013-08-13 22:03:26 -0300 | [diff] [blame] | 188 | |
Lucas De Marchi | 55bcc4a | 2014-03-06 01:09:30 -0300 | [diff] [blame] | 189 | static noreturn int modprobe_param_kcmdline2(const struct test *t) |
| 190 | { |
| 191 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 192 | const char *const args[] = { |
| 193 | progname, |
| 194 | "-c", |
| 195 | NULL, |
| 196 | }; |
| 197 | |
| 198 | test_spawn_prog(progname, args); |
| 199 | exit(EXIT_FAILURE); |
| 200 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 201 | DEFINE_TEST(modprobe_param_kcmdline2, |
Lucas De Marchi | 55bcc4a | 2014-03-06 01:09:30 -0300 | [diff] [blame] | 202 | .description = "check if params with no value are parsed correctly from kcmdline", |
| 203 | .config = { |
| 204 | [TC_UNAME_R] = "4.4.4", |
| 205 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline2", |
| 206 | }, |
| 207 | .output = { |
| 208 | .out = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline2/correct.txt", |
| 209 | }, |
| 210 | .modules_loaded = "", |
| 211 | ); |
| 212 | |
Lucas De Marchi | 4214902 | 2014-03-06 01:24:32 -0300 | [diff] [blame] | 213 | static noreturn int modprobe_param_kcmdline3(const struct test *t) |
| 214 | { |
| 215 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 216 | const char *const args[] = { |
| 217 | progname, |
| 218 | "-c", |
| 219 | NULL, |
| 220 | }; |
| 221 | |
| 222 | test_spawn_prog(progname, args); |
| 223 | exit(EXIT_FAILURE); |
| 224 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 225 | DEFINE_TEST(modprobe_param_kcmdline3, |
Lucas De Marchi | 4214902 | 2014-03-06 01:24:32 -0300 | [diff] [blame] | 226 | .description = "check if unrelated strings in kcmdline are correctly ignored", |
| 227 | .config = { |
| 228 | [TC_UNAME_R] = "4.4.4", |
| 229 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline3", |
| 230 | }, |
| 231 | .output = { |
| 232 | .out = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline3/correct.txt", |
| 233 | }, |
| 234 | .modules_loaded = "", |
| 235 | ); |
| 236 | |
Lucas De Marchi | 4977662 | 2014-03-06 01:36:02 -0300 | [diff] [blame] | 237 | static noreturn int modprobe_param_kcmdline4(const struct test *t) |
| 238 | { |
| 239 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 240 | const char *const args[] = { |
| 241 | progname, |
| 242 | "-c", |
| 243 | NULL, |
| 244 | }; |
| 245 | |
| 246 | test_spawn_prog(progname, args); |
| 247 | exit(EXIT_FAILURE); |
| 248 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 249 | DEFINE_TEST(modprobe_param_kcmdline4, |
Lucas De Marchi | 4977662 | 2014-03-06 01:36:02 -0300 | [diff] [blame] | 250 | .description = "check if unrelated strings in kcmdline are correctly ignored", |
| 251 | .config = { |
| 252 | [TC_UNAME_R] = "4.4.4", |
| 253 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline4", |
| 254 | }, |
| 255 | .output = { |
| 256 | .out = TESTSUITE_ROOTFS "test-modprobe/module-param-kcmdline4/correct.txt", |
| 257 | }, |
| 258 | .modules_loaded = "", |
| 259 | ); |
| 260 | |
Michal Marek | 2ce5de0 | 2014-02-28 13:05:29 +0100 | [diff] [blame] | 261 | static noreturn int modprobe_force(const struct test *t) |
| 262 | { |
| 263 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 264 | const char *const args[] = { |
| 265 | progname, |
| 266 | "--force", "psmouse", |
| 267 | NULL, |
| 268 | }; |
| 269 | |
| 270 | test_spawn_prog(progname, args); |
| 271 | exit(EXIT_FAILURE); |
| 272 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 273 | DEFINE_TEST(modprobe_force, |
Michal Marek | 2ce5de0 | 2014-02-28 13:05:29 +0100 | [diff] [blame] | 274 | .description = "check modprobe --force", |
| 275 | .config = { |
| 276 | [TC_UNAME_R] = "4.4.4", |
| 277 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/force", |
| 278 | [TC_INIT_MODULE_RETCODES] = "", |
| 279 | }, |
| 280 | .modules_loaded = "psmouse", |
| 281 | ); |
| 282 | |
Michal Marek | be29c40 | 2014-02-28 13:05:31 +0100 | [diff] [blame] | 283 | static noreturn int modprobe_oldkernel(const struct test *t) |
| 284 | { |
| 285 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 286 | const char *const args[] = { |
| 287 | progname, |
| 288 | "psmouse", |
| 289 | NULL, |
| 290 | }; |
| 291 | |
| 292 | test_spawn_prog(progname, args); |
| 293 | exit(EXIT_FAILURE); |
| 294 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 295 | DEFINE_TEST(modprobe_oldkernel, |
Michal Marek | be29c40 | 2014-02-28 13:05:31 +0100 | [diff] [blame] | 296 | .description = "check modprobe --force", |
| 297 | .config = { |
| 298 | [TC_UNAME_R] = "3.3.3", |
| 299 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/oldkernel", |
| 300 | [TC_INIT_MODULE_RETCODES] = "", |
| 301 | }, |
| 302 | .modules_loaded = "psmouse", |
| 303 | ); |
| 304 | |
| 305 | static noreturn int modprobe_oldkernel_force(const struct test *t) |
| 306 | { |
| 307 | const char *progname = ABS_TOP_BUILDDIR "/tools/modprobe"; |
| 308 | const char *const args[] = { |
| 309 | progname, |
| 310 | "--force", "psmouse", |
| 311 | NULL, |
| 312 | }; |
| 313 | |
| 314 | test_spawn_prog(progname, args); |
| 315 | exit(EXIT_FAILURE); |
| 316 | } |
Lucas De Marchi | f1155c1 | 2014-10-09 13:00:30 -0300 | [diff] [blame] | 317 | DEFINE_TEST(modprobe_oldkernel_force, |
Michal Marek | be29c40 | 2014-02-28 13:05:31 +0100 | [diff] [blame] | 318 | .description = "check modprobe --force", |
| 319 | .config = { |
| 320 | [TC_UNAME_R] = "3.3.3", |
| 321 | [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modprobe/oldkernel-force", |
| 322 | [TC_INIT_MODULE_RETCODES] = "", |
| 323 | }, |
| 324 | .modules_loaded = "psmouse", |
| 325 | ); |
| 326 | |
Lucas De Marchi | 4328982 | 2014-10-09 14:29:04 -0300 | [diff] [blame] | 327 | TESTSUITE_MAIN(); |