~eda-qa/leaflang/cpp

« back to all changes in this revision

Viewing changes to share/unit_tests/block/error/info_add.lfb

  • Committer: edA-qa mort-ora-y
  • Date: 2017-08-19 06:03:00 UTC
  • mfrom: (100.1.22 misc)
  • Revision ID: eda-qa@disemia.com-20170819060300-209dwd5884343mi0
merging miscelaneous changes, mainly platform improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        do {
9
9
                inner()
10
10
        } on fail {
11
 
                current_error_info.add( string_tag("outer") )
 
11
                current_fail.add( string_tag("outer") )
12
12
                resume_fail
13
13
        }
14
14
}
16
16
do {
17
17
        outer()
18
18
} on fail {
19
 
        trace(current_error_info.tag)
20
 
        trace(unopt(current_error_info.next).tag)
 
19
        trace(current_fail.tag)
 
20
        trace(unopt(current_fail.next).tag)
21
21
}