2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-15 13:22:14 +00:00
Files
phoenix/test/operator/bitwise_tests.cpp
Joel de Guzman 0ffb77664a First shot by Thomas Heller
[SVN r62537]
2010-06-08 01:31:35 +00:00

74 lines
1.9 KiB
C++

/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#include <iostream>
#include <boost/detail/lightweight_test.hpp>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/operator.hpp>
using namespace boost::phoenix;
using namespace boost::phoenix::arg_names;
using namespace std;
int
main()
{
{
int x;
int y;
x = 123;
y = 123;
(ref(x) &= 456)(0);
y &= 456;
BOOST_TEST(x == y);
x = 123;
y = 123;
(ref(x) |= 456)(0);
y |= 456;
BOOST_TEST(x == y);
x = 123;
y = 123;
(ref(x) ^= 456)(0);
y ^= 456;
BOOST_TEST(x == y);
x = 123;
y = 123;
(ref(x) <<= 4)(0);
y <<= 4;
BOOST_TEST(x == y);
x = 1230000;
y = 1230000;
(ref(x) >>= 4)(0);
y >>= 4;
BOOST_TEST(x == y);
int& r1 = (ref(x) &= 456)(0); // should be an lvalue
int& r2 = (ref(x) |= 456)(0); // should be an lvalue
int& r3 = (ref(x) ^= 456)(0); // should be an lvalue
int& r4 = (ref(x) <<= 4)(0); // should be an lvalue
int& r5 = (ref(x) >>= 4)(0); // should be an lvalue
BOOST_TEST(&r1 == &r2 && &r2 == &r3 && &r3 == &r4 && &r4 == &r5);
}
{
BOOST_TEST((val(123) & 456)(0) == (123 & 456));
BOOST_TEST((val(123) | 456)(0) == (123 | 456));
BOOST_TEST((val(123) ^ 456)(0) == (123 ^ 456));
BOOST_TEST((val(123) << 4)(0) == (123 << 4));
BOOST_TEST((val(1230000) >> 4)(0) == (1230000 >> 4));
char const* s = "Yabadabadoo!!!\n";
(cout << arg1)(s);
}
return boost::report_errors();
}