15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;
(declare (unit redo-logpro))
(declare (uses common))
(declare (uses rmt))
(include "common_records.scm")
(use matchable)
(use fmt)
(use ducttape-lib)
(define css "")
(define (redo-logpro:redo-logpro)
;; TODO: get list of all test ids matching selectors
;; TODO: iterate over tests ids list
;; TODO: populate testdat from testid, start-step-name (from first step)
;; TODO: (ezsteps:run-from testdat start-step-name #f rerun-logpro-only: #t))
(print "redo-logpro Unimplemented")
#f)
|
|
|
<
<
|
|
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;
(declare (unit redo-logpro))
(declare (uses common))
(declare (uses rmt))
(declare (uses ezsteps))
(include "common_records.scm")
(use matchable)
(use fmt)
(use ducttape-lib)
(define css "")
(define (redo-logpro:redo-logpro run-id test-id testdat)
;; TODO: populate testdat from testid, start-step-name (from first step)
;; TODO: (ezsteps:run-from testdat start-step-name #f rerun-logpro-only: #t))
(BB> "redo-logpro:redo-logpro called with run-id="run-id" test-id="test-id" testdat="testdat)
(ezsteps:run-from testdat #f #f rerun-logpro-only: #t)
(print "redo-logpro Unimplemented")
#f)
|