~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to libraries/hpc/tests/raytrace/tixs/test.T

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
setTestOpts(compose(only_compiler_types(['ghc']),
 
2
                    compose(omit_ways(['ghci']),
 
3
                            skip_if_fast)))
 
4
 
 
5
hpcsample = 'hpc_sample'
 
6
 
 
7
test('hpc_report_multi_001', normal, run_command, \
 
8
        ["'" + config.hpc + "' report " + hpcsample + " --include=Geometry --per-module"])
 
9
test('hpc_report_multi_002', normal, run_command, \
 
10
        ["'" + config.hpc + "' report " + hpcsample + " --exclude=Geometry --per-module"])
 
11
test('hpc_report_multi_003', normal, run_command, \
 
12
        ["'" + config.hpc + "' report " + hpcsample + " --include=Geometry --per-module --decl-list"])
 
13
 
 
14
test('hpc_markup_multi_001', normal, run_command, \
 
15
        ["'" + config.hpc + "' markup --srcdir=../ " + hpcsample + " --include=Geometry"])
 
16
test('hpc_markup_multi_002', normal, run_command, \
 
17
        ["'" + config.hpc + "' markup --srcdir=../ " + hpcsample + " --exclude=Geometry"])
 
18
test('hpc_markup_multi_003', normal, run_command, \
 
19
        ["'" + config.hpc + "' markup --srcdir=../ " + hpcsample + " --fun-entry-count"])
 
20
 
 
21
test('hpc_show_multi_001', normal, run_command,
 
22
     ["'" + config.hpc + "' show " + hpcsample])
 
23
test('hpc_show_multi_002', normal, run_command,
 
24
     ["'" + config.hpc + "' show " + hpcsample + " --include=Geometry"])
 
25
 
 
26
# XXX We used to do clean_o_hi(), but that doesn't work any more
 
27
# Fix cleaning properly
 
28