/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to tests/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2021-11-15 12:16:03 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20211115121603-lclpo88js9sgreee
Refactoring.

* Moved all off the Common namespace into Utils.
* Moved the tests for the Utils into it's own fonder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                     dependencies: [test_dependencies, libvqdr_dep])
14
14
test ('Test Suite 1', test1)
15
15
 
16
 
test2_files = files ([
17
 
  'common_test_runner.vala',
18
 
  'gobject_to_string.vala',
19
 
  'fast_number.vala',
20
 
])
21
 
 
22
 
test2 = executable ('test2',
23
 
                     test2_files,
24
 
                     dependencies: [test_dependencies, libvqdr_dep])
25
 
 
26
 
test ('Test Suit 2', test2)
27
16
 
28
17
subdir ('tokens')
29
18
 
 
19
subdir ('utils')
 
20
 
30
21
subdir_done ()