2015-09-29 14:08:48 -05:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
;; modify it under the terms of the GNU General Public License as
|
|
|
|
;; published by the Free Software Foundation; either version 2 of
|
|
|
|
;; the License, or (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program; if not, contact:
|
|
|
|
;;
|
|
|
|
;; Free Software Foundation Voice: +1-617-542-5942
|
|
|
|
;; 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
|
|
|
|
;; Boston, MA 02110-1301, USA gnu@gnu.org
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2019-05-17 18:10:49 -05:00
|
|
|
(define-module (tests unittest-support))
|
2017-12-19 16:13:01 -06:00
|
|
|
(eval-when
|
2014-10-31 04:07:10 -05:00
|
|
|
(compile load eval expand)
|
2017-12-19 16:13:01 -06:00
|
|
|
(load-extension "libtest-core-guile" "scm_init_unittest_support_module"))
|
2012-04-03 16:35:19 -05:00
|
|
|
(use-modules (unittest_support))
|
2011-12-12 16:41:41 -06:00
|
|
|
|
|
|
|
(re-export TestErrorStruct-log-level-set)
|
|
|
|
(re-export TestErrorStruct-log-level-get)
|
|
|
|
(re-export TestErrorStruct-log-domain-set)
|
|
|
|
(re-export TestErrorStruct-log-domain-get)
|
|
|
|
(re-export TestErrorStruct-msg-set)
|
|
|
|
(re-export TestErrorStruct-msg-get)
|
|
|
|
(re-export new-TestErrorStruct)
|
|
|
|
(re-export delete-TestErrorStruct)
|
|
|
|
(re-export G-LOG-FLAG-RECURSION)
|
|
|
|
(re-export G-LOG-FLAG-FATAL)
|
|
|
|
(re-export G-LOG-LEVEL-ERROR)
|
|
|
|
(re-export G-LOG-LEVEL-CRITICAL)
|
|
|
|
(re-export G-LOG-LEVEL-WARNING)
|
|
|
|
(re-export G-LOG-LEVEL-MESSAGE)
|
|
|
|
(re-export G-LOG-LEVEL-INFO)
|
|
|
|
(re-export G-LOG-LEVEL-DEBUG)
|
|
|
|
(re-export G-LOG-LEVEL-MASK)
|
|
|
|
(re-export test-add-error)
|
|
|
|
(re-export test-clear-error-list)
|
|
|
|
(re-export g-log-remove-handler)
|
|
|
|
(re-export test-set-checked-handler)
|
|
|
|
(re-export test-set-null-handler)
|
|
|
|
(re-export test-set-list-handler)
|