Implement concurrent test execution #1
Labels
No Label
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Depends on
#6 Implement diagnostics class
arc/libarc-validate
Reference: arc/libarc-validate#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Test execution could see a significant performance boost if test cases would be allowed to execute in parallel.
class queue
- implements a multithreaded queue.queue::enqueue(...)
- enqueue function.queue::drain()
- spawn threads and drain the queue, configurable thread count?thread_local
utilities::current<T>
for tracking the current test.The queue could be implemented using an atomic counter, which points to the next function to execute. This avoids the need for a mutex.
Test result output should be synchronized and output after the queue is drained.