sync_wait.c 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * sync fence wait tests
  3. * Copyright 2015-2016 Collabora Ltd.
  4. *
  5. * Based on the implementation from the Android Open Source Project,
  6. *
  7. * Copyright 2012 Google, Inc
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in
  17. * all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  22. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. * OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. #include "sync.h"
  28. #include "sw_sync.h"
  29. #include "synctest.h"
  30. int test_fence_multi_timeline_wait(void)
  31. {
  32. int timelineA, timelineB, timelineC;
  33. int fenceA, fenceB, fenceC, merged;
  34. int valid, active, signaled, ret;
  35. timelineA = sw_sync_timeline_create();
  36. timelineB = sw_sync_timeline_create();
  37. timelineC = sw_sync_timeline_create();
  38. fenceA = sw_sync_fence_create(timelineA, "fenceA", 5);
  39. fenceB = sw_sync_fence_create(timelineB, "fenceB", 5);
  40. fenceC = sw_sync_fence_create(timelineC, "fenceC", 5);
  41. merged = sync_merge("mergeFence", fenceB, fenceA);
  42. merged = sync_merge("mergeFence", fenceC, merged);
  43. valid = sw_sync_fence_is_valid(merged);
  44. ASSERT(valid, "Failure merging fence from various timelines\n");
  45. /* Confirm fence isn't signaled */
  46. active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
  47. ASSERT(active == 3, "Fence signaled too early!\n");
  48. ret = sync_wait(merged, 0);
  49. ASSERT(ret == 0,
  50. "Failure waiting on fence until timeout\n");
  51. ret = sw_sync_timeline_inc(timelineA, 5);
  52. active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
  53. signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED);
  54. ASSERT(active == 2 && signaled == 1,
  55. "Fence did not signal properly!\n");
  56. ret = sw_sync_timeline_inc(timelineB, 5);
  57. active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
  58. signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED);
  59. ASSERT(active == 1 && signaled == 2,
  60. "Fence did not signal properly!\n");
  61. ret = sw_sync_timeline_inc(timelineC, 5);
  62. active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
  63. signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED);
  64. ASSERT(active == 0 && signaled == 3,
  65. "Fence did not signal properly!\n");
  66. /* confirm you can successfully wait */
  67. ret = sync_wait(merged, 100);
  68. ASSERT(ret > 0, "Failure waiting on signaled fence\n");
  69. sw_sync_fence_destroy(merged);
  70. sw_sync_fence_destroy(fenceC);
  71. sw_sync_fence_destroy(fenceB);
  72. sw_sync_fence_destroy(fenceA);
  73. sw_sync_timeline_destroy(timelineC);
  74. sw_sync_timeline_destroy(timelineB);
  75. sw_sync_timeline_destroy(timelineA);
  76. return 0;
  77. }