- Timestamp:
- Aug 30, 2023, 10:13:45 PM (2 years ago)
- Branches:
- master
- Children:
- 0b8c951d
- Parents:
- 38de914
- Location:
- tests
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/array-container/array-basic.cfa
r38de914 r55b060d 1 #include <co ntainers/array.hfa>1 #include <collections/array.hfa> 2 2 3 3 // -
tests/array-container/array-md-sbscr-cases.cfa
r38de914 r55b060d 1 #include <co ntainers/array.hfa>1 #include <collections/array.hfa> 2 2 3 3 #include <assert.h> -
tests/array-container/array-sbscr-types.cfa
r38de914 r55b060d 1 #include <co ntainers/array.hfa>1 #include <collections/array.hfa> 2 2 3 3 // Shows support for many required ways a user can index into a new array. -
tests/array-container/dimexpr-match-cfa.cfa
r38de914 r55b060d 9 9 #ifdef INCLUDE_MINIMAL 10 10 #define POUNDINCLUDE #include 11 POUNDINCLUDE <co ntainers/array.hfa>11 POUNDINCLUDE <collections/array.hfa> 12 12 #else 13 #include <co ntainers/array.hfa>// part of SUT13 #include <collections/array.hfa> // part of SUT 14 14 #endif 15 15 16 #include "dimexpr-match.hfa" 16 #include "dimexpr-match.hfa" // test framework 17 17 18 18 // CFA "classic" behaviour is inconsistent between "C array" and "new array." -
tests/array-container/safety-summary.cfa
r38de914 r55b060d 1 1 // A simple, isolated, example of what the dimexpr-match cases are all about. 2 2 3 #include <co ntainers/array.hfa>3 #include <collections/array.hfa> 4 4 5 5 // context excerpted from doc/theses/mike_brooks_MMath/programs/hello-array.cfa -
tests/collections/atomic_mpsc.cfa
r38de914 r55b060d 1 1 #include <fstream.hfa> 2 #include <co ntainers/lockfree.hfa>2 #include <collections/lockfree.hfa> 3 3 #include <thread.hfa> 4 4 -
tests/collections/string-api-coverage.cfa
r38de914 r55b060d 1 #include <co ntainers/string.hfa>1 #include <collections/string.hfa> 2 2 #include <string_sharectx.hfa> 3 3 -
tests/collections/string-istream.cfa
r38de914 r55b060d 1 1 #include <iostream.hfa> 2 #include <co ntainers/string.hfa>3 #include <co ntainers/string_res.hfa>2 #include <collections/string.hfa> 3 #include <collections/string_res.hfa> 4 4 5 5 -
tests/collections/string-overwrite.cfa
r38de914 r55b060d 1 #include <co ntainers/string.hfa>1 #include <collections/string.hfa> 2 2 #include <string_sharectx.hfa> 3 3 -
tests/collections/vector-demo.cfa
r38de914 r55b060d 1 #include <co ntainers/vector2.hfa>1 #include <collections/vector2.hfa> 2 2 3 3 void raiiTests() { -
tests/concurrency/unified_locking/thread_test.cfa
r38de914 r55b060d 3 3 #include <stdlib.hfa> 4 4 #include <thread.hfa> 5 #include <co ntainers/array.hfa>5 #include <collections/array.hfa> 6 6 7 7 static unsigned int taskCount = 4; -
tests/include/vector-containers.cfa
r38de914 r55b060d 1 1 #include <vector.hfa> 2 #include <bits/co ntainers.hfa>2 #include <bits/collections.hfa> 3 3 4 4 int main() { -
tests/list/dlist-insert-remove.cfa
r38de914 r55b060d 1 #include <co ntainers/list.hfa>1 #include <collections/list.hfa> 2 2 #include <fstream.hfa> 3 3 #include <assert.h> -
tests/maybe.cfa
r38de914 r55b060d 10 10 // Created On : Thr May 25 16:02:00 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Sep 25 15:13:28 202013 // Update Count : 212 // Last Modified On : Wed Aug 30 21:45:27 2023 13 // Update Count : 3 14 14 // 15 15 16 16 #include <assert.h> 17 #include <co ntainers/maybe.hfa>17 #include <collections/maybe.hfa> 18 18 19 19 void checkPredicates() { -
tests/result.cfa
r38de914 r55b060d 10 10 // Created On : Thr May 25 16:50:00 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Sep 25 15:22:59 202013 // Update Count : 212 // Last Modified On : Wed Aug 30 21:46:34 2023 13 // Update Count : 3 14 14 // 15 15 16 16 #include <assert.h> 17 #include <co ntainers/result.hfa>17 #include <collections/result.hfa> 18 18 19 19 void checkPredicates() { -
tests/zombies/gc_no_raii/premake4.lua
r38de914 r55b060d 48 48 linkoptions (linkOptionList) 49 49 includedirs (includeDirList) 50 files { "src/**.c", "co ntainers/**.c" }50 files { "src/**.c", "collections/**.c" } 51 51 52 52 configuration "debug" -
tests/zombies/hashtable.cfa
r38de914 r55b060d 1 1 2 #include <co ntainers/list.hfa>2 #include <collections/list.hfa> 3 3 4 4 #include <exception.hfa> -
tests/zombies/hashtable2.cfa
r38de914 r55b060d 1 1 2 #include <co ntainers/list.hfa>2 #include <collections/list.hfa> 3 3 4 4 typedef unsigned int K; -
tests/zombies/linked-list-perf/experiment.koad
r38de914 r55b060d 67 67 #elif defined IMPL_CFA_MIKE_NEW 68 68 69 #include <co ntainers/list.hfa>69 #include <collections/list.hfa> 70 70 struct S { 71 71 int f[64]; // FIXME: make "is volatile" consistent; given bug #TBD
Note:
See TracChangeset
for help on using the changeset viewer.