build.ck 736 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*++
  2. Copyright (c) 2013 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Test Applications
  5. Abstract:
  6. This module contains applications used to test portions of
  7. functionality during development of the operating system.
  8. Author:
  9. Evan Green 6-May-2013
  10. Environment:
  11. User
  12. --*/
  13. function build() {
  14. app_names = [
  15. "dbgtest",
  16. "filetest",
  17. "ktest",
  18. "mmaptest",
  19. "mnttest",
  20. "pathtest",
  21. "perftest",
  22. "sigtest",
  23. "socktest",
  24. "utmrtest"
  25. ];
  26. apps = [];
  27. for (app in app_names) {
  28. apps += ["//apps/testapps/" + app + ":" + app];
  29. }
  30. testapps_group = group("testapps", apps);
  31. return testapps_group;
  32. }
  33. return build();