Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F2731020
installation.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 14, 2:46 AM
Size
620 B
Mime Type
text/x-c++
Expires
Mon, Mar 16, 2:46 AM (1 d, 17 h)
Engine
blob
Format
Raw Data
Handle
243785
Attached To
rXR Xreate
installation.cpp
View Options
/*
* installation.cpp
*
* Created on: 26 Feb 2016
* Author: pgess
*/
#include "passmanager.h"
#include "gtest/gtest.h"
#include <stdio.h>
using namespace std;
using namespace xreate;
//TODO replace string identifiers with Atoms in order to hold position, etc
//TODO enable tests. Depends on context loop(test: Context.full_LoopContext)
TEST(Sprint1, DISABLED_test1){
const string filenameSource("scripts/testspass/sprint1-Installation1.xreate");
FILE* fileSource;
ASSERT_TRUE(fileSource = fopen(filenameSource.c_str(), "rb"));
PassManager* man = PassManager::prepareForCode(fileSource);
man->run();
}
Event Timeline
Log In to Comment