mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
18 lines
448 B
(define exit-code 0)
|
|
(setenv "GNC_UNINSTALLED" "1")
|
|
(use-modules (gnucash core-utils))
|
|
|
|
(if (macro? (module-ref (current-module) 'N_))
|
|
(display "Macro N_ defined\n")
|
|
(begin
|
|
(display "Failed - macro N_ not defined\n")
|
|
(set! exit-code -1)))
|
|
|
|
(if (string=? (N_ "foobar") "foobar")
|
|
(display "Macro N_ works properly\n")
|
|
(begin
|
|
(display "Failed - macro N_ doesn't work\n")
|
|
(set! exit-code -1)))
|
|
|
|
(exit exit-code)
|