~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/mod/sys/tst/SYS0009.als

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-11 02:00:35 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150711020035-2nhpztq7s15qyc0v
Tags: 2.5.1-1
* New upstream release. (Closes: #789968)
* Update debian/control.
  - Update Standards-Version to 3.9.6.
* Add support mips64(el) and ppc64el. (Closes: #741508, #748146)
* Add patches/support-gcc-5.x.patch. (Closes: #777767)
  - Fix build with gcc-5.x.
* Add patches/Disable-NET0001.als.patch.
  - Disable test of NET0001.als.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# ---------------------------------------------------------------------------
 
2
# - SYS0009.als                                                             -
 
3
# - afnix:sys module test unit                                              -
 
4
# ---------------------------------------------------------------------------
 
5
# - This program is free software;  you can redistribute it  and/or  modify -
 
6
# - it provided that this copyright notice is kept intact.                  -
 
7
# -                                                                         -
 
8
# - This program  is  distributed in  the hope  that it will be useful, but -
 
9
# - without  any  warranty;  without  even   the   implied    warranty   of -
 
10
# - merchantability or fitness for a particular purpose.  In no event shall -
 
11
# - the copyright holder be liable for any  direct, indirect, incidental or -
 
12
# - special damages arising in any way out of the use of this software.     -
 
13
# ---------------------------------------------------------------------------
 
14
# - copyright (c) 1999-2015 amaury darsch                                   -
 
15
# ---------------------------------------------------------------------------
 
16
 
 
17
# @info   performance meter unit
 
18
# @author amaury darsch
 
19
 
 
20
# get the module
 
21
interp:library "afnix-sys"
 
22
 
 
23
# create a default performance meter
 
24
trans  perf (afnix:sys:Meter)
 
25
assert "Meter" (perf:repr)
 
26
 
 
27
# set name and info
 
28
const name "meter"
 
29
const info "afnix performance meter"
 
30
perf:set-name-info name info
 
31
assert name (perf:get-name)
 
32
assert info (perf:get-info)
 
33
 
 
34
# check default time/counter numbers
 
35
assert 1 (perf:get-meter-number)
 
36
assert 0 (perf:get-counter-number)
 
37
 
 
38
# check reference time
 
39
assert 0    (perf:get-reference-time 0)
 
40
trans  tref (perf:set-reference-time)
 
41
assert tref (perf:get-reference-time 0)
 
42
 
 
43
trans  tmtr (perf:stamp 0)
 
44
assert tmtr (perf:get-meter 0)
 
45
 
 
46
# create a new meter
 
47
trans  perf (afnix:sys:Meter 1 0)
 
48
# check default time/counter numbers
 
49
assert 0 (perf:get-meter-number)
 
50
assert 1 (perf:get-counter-number)
 
51
 
 
52
# check counter
 
53
assert 0 (perf:get-counter 0)
 
54
trans  pcnt (perf:mark 0)
 
55
assert 1    pcnt
 
56
assert pcnt (perf:get-counter 0)