1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ;;; Copyright (C) 2023, 2024 Igalia, S.L.
- ;;;
- ;;; Licensed under the Apache License, Version 2.0 (the "License");
- ;;; you may not use this file except in compliance with the License.
- ;;; You may obtain a copy of the License at
- ;;;
- ;;; http://www.apache.org/licenses/LICENSE-2.0
- ;;;
- ;;; Unless required by applicable law or agreed to in writing, software
- ;;; distributed under the License is distributed on an "AS IS" BASIS,
- ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ;;; See the License for the specific language governing permissions and
- ;;; limitations under the License.
- ;;; Commentary:
- ;;;
- ;;; Bitwise operation tests.
- ;;;
- ;;; Code:
- (use-modules (srfi srfi-64)
- (test utils))
- (test-begin "test-bitwise")
- (with-additional-imports
- ((hoot bitwise))
- ;; FIXME: add tests with bignum arguments
- (test-call "8" (lambda (a b) (logand a b)) #b1100 #b1010)
- (test-call "14" (lambda (a b) (logior a b)) #b1100 #b1010)
- (test-call "6" (lambda (a b) (logxor a b)) #b1100 #b1010)
- ;; FIXME: re-enable this test when we bump to Guile
- ;; v3.0.10-31-g7aa4cfa9d or later.
- ;; (test-call "8" (lambda (a b) (logand a (lognot b))) #b1100 #b0100)
- (test-call "0" (lambda (x n) (ash x n)) 1 -2)
- (test-call "-1" (lambda (x n) (ash x n)) -1 -1)
- (test-call "16" (lambda (x n) (ash x n)) 32 -1)
- (test-call "0" (lambda (x n) (ash x n)) 32 -64)
- (test-call "4" (lambda (x n) (ash x n)) 1 2)
- (test-call "-2" (lambda (x n) (ash x n)) -1 1)
- (test-call "64" (lambda (x n) (ash x n)) 32 1)
- ;; lsh/immediate
- (test-call "8589934592" (lambda (x) (ash x 33)) 1)
- (test-call "-2" (lambda (x) (ash x 1)) -1)
- (test-call "-1" (lambda (x) (ash x -1)) -1)
- (test-call "18446744073709551616" (lambda (x y) (ash x y)) 1 64)
- (test-call "0" (lambda (x y z) (ash (+ x y) z)) 536870911 1 -64)
- ;; Bitvector equality
- (test-call "#t" (lambda (a b) (equal? a b)) #* #*)
- (test-call "#t" (lambda (a b) (equal? a b)) #*10 #*10)
- (test-call "#f" (lambda (a b) (equal? a b)) #* #*1)
- (test-call "#f" (lambda (a b) (equal? a b)) #*10 #*01)
- (test-call "#f" (lambda (a b) (equal? a b)) #*100 #*101))
- (test-end* "test-bitwise")
|