1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*++
- Copyright (c) 2013 Minoca Corp. All Rights Reserved
- Module Name:
- Test Applications
- Abstract:
- This module contains applications used to test portions of
- functionality during development of the operating system.
- Author:
- Evan Green 6-May-2013
- Environment:
- User
- --*/
- function build() {
- app_names = [
- "dbgtest",
- "filetest",
- "ktest",
- "mmaptest",
- "mnttest",
- "pathtest",
- "perftest",
- "sigtest",
- "socktest",
- "utmrtest"
- ];
- apps = [];
- for (app in app_names) {
- apps += ["//apps/testapps/" + app + ":" + app];
- }
- testapps_group = group("testapps", apps);
- return testapps_group;
- }
- return build();
|