53 lines
2.4 KiB
C++
53 lines
2.4 KiB
C++
|
//===- CommandTest.cpp -- command line runtime builder unit tests ---------===//
|
||
|
//
|
||
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||
|
// See https://llvm.org/LICENSE.txt for license information.
|
||
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "flang/Optimizer/Builder/Runtime/Command.h"
|
||
|
#include "RuntimeCallTestBase.h"
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
TEST_F(RuntimeCallTest, genCommandArgumentCountTest) {
|
||
|
mlir::Location loc = firBuilder->getUnknownLoc();
|
||
|
mlir::Value result = fir::runtime::genCommandArgumentCount(*firBuilder, loc);
|
||
|
checkCallOp(result.getDefiningOp(), "_FortranAArgumentCount", /*nbArgs=*/0,
|
||
|
/*addLocArgs=*/false);
|
||
|
}
|
||
|
|
||
|
TEST_F(RuntimeCallTest, genGetCommandArgument) {
|
||
|
mlir::Location loc = firBuilder->getUnknownLoc();
|
||
|
mlir::Type intTy = firBuilder->getDefaultIntegerType();
|
||
|
mlir::Type boxTy = fir::BoxType::get(firBuilder->getNoneType());
|
||
|
mlir::Value number = firBuilder->create<fir::UndefOp>(loc, intTy);
|
||
|
mlir::Value value = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value length = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value errmsg = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value result = fir::runtime::genGetCommandArgument(
|
||
|
*firBuilder, loc, number, value, length, errmsg);
|
||
|
checkCallOp(result.getDefiningOp(), "_FortranAGetCommandArgument",
|
||
|
/*nbArgs=*/4,
|
||
|
/*addLocArgs=*/true);
|
||
|
}
|
||
|
|
||
|
TEST_F(RuntimeCallTest, genGetEnvVariable) {
|
||
|
mlir::Location loc = firBuilder->getUnknownLoc();
|
||
|
mlir::Value name = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value value = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value length = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value trimName = firBuilder->create<fir::UndefOp>(loc, i1Ty);
|
||
|
mlir::Value errmsg = firBuilder->create<fir::UndefOp>(loc, boxTy);
|
||
|
mlir::Value result = fir::runtime::genGetEnvVariable(
|
||
|
*firBuilder, loc, name, value, length, trimName, errmsg);
|
||
|
checkCallOp(result.getDefiningOp(), "_FortranAGetEnvVariable", /*nbArgs=*/5,
|
||
|
/*addLocArgs=*/true);
|
||
|
}
|
||
|
|
||
|
TEST_F(RuntimeCallTest, genGetPID) {
|
||
|
mlir::Location loc = firBuilder->getUnknownLoc();
|
||
|
mlir::Value result = fir::runtime::genGetPID(*firBuilder, loc);
|
||
|
checkCallOp(result.getDefiningOp(), "_FortranAGetPID", /*nbArgs=*/0,
|
||
|
/*addLocArgs=*/false);
|
||
|
}
|